-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
38 lines (35 loc) · 1.06 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "be_great"
version = "0.0.8"
authors = [
{ name="Kathrin Sessler", email="[email protected]" },
{ name="Vadim Borisov", email="[email protected]"},
]
description = "Generating Realistic Tabular Data using Large Language Models"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["great", "pytorch", "tabular data", "data generation", "transformer", "language models", "deep learning"]
dependencies = [
"datasets >= 2.5.2",
"numpy >= 1.23.1",
"pandas >= 1.4.4",
"scikit_learn >= 1.1.1",
"torch >= 1.10.2",
"tqdm >= 4.64.1",
"transformers >= 4.22.1",
"accelerate >= 0.20.1",
]
[project.urls]
"Homepage" = "https://github.com/kathrinse/be_great"
"Documentation" = "https://kathrinse.github.io/be_great/"
[tool.setuptools]
packages = ["be_great"]