-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (36 loc) · 1.08 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
39
40
41
[project]
name = "augini"
version = "0.2.0"
authors = [
{ name = "Vadim Borisov", email = "[email protected]" },
]
description = "A framework for generating synthetic tabular data using AI"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
keywords = ["augini", "synthetic data", "tabular data", "AI", "data generation", "OpenAI", "OpenRouter"]
dependencies = [
"openai>=1.35.13",
"pandas",
"numpy<2.0.0",
"tqdm",
"nest_asyncio",
]
[project.urls]
"Homepage" = "https://github.com/tabularis-ai/augini"
"Bug Tracker" = "https://github.com/tabularis-ai/augini/issues"
[tool.setuptools]
packages = ["augini"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"