forked from HumanSignal/Adala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (66 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "adala"
version = "0.0.4dev"
description = "Adala: Autonomous Data Labeling Agent"
authors = [
]
dependencies = [
"pandas",
"openai==0.28.1",
"guidance==0.0.64",
"pydantic>=2",
"rich>=13",
"redis-om",
"fastapi>=0.104.1",
"aiosqlite>=0.19.0",
"chromadb>=0.4.18",
"tenacity>=8.2.3",
"gspread>=5.12.3",
"datasets>=2.16.1",
"aiohttp>=3.9.3",
]
requires-python = ">=3.8.8,<3.12"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
# [project.optional-dependencies]
# label-studio = [
# "label-studio-sdk @ git+https://github.com/HumanSignal/label-studio-sdk.git@pd-support",
# ]
# jupyter = [
# "jupyter",
# ]
# docs = [
# "sphinx>=7.1.2",
# "sphinx-rtd-theme>=1.3.0",
# "myst-parser>=2.0.0",
# ]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.4.3",
"pytest-cov>=4.1.0",
"black>=23.11.0",
"pytest-black>=0.3.12",
]
doc = [
"mkdocs>=1.5.3",
"mkdocs-jupyter>=0.24.3",
"mkdocs-material>=9.4.7",
"mkdocstrings-python>=1.7.3",
]
dev = [
"ipykernel>=6.28.0",
"jupyter>=1.0.0",
"jupyterlab>=4.0.10",
"jupyter-client==8.4.0",
"matplotlib>=3.7.4",
]
[project.scripts]
adala = "adala.cli:main"