forked from refuel-ai/autolabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
94 lines (90 loc) · 1.88 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["setuptools>=65.0.0", "wheel >= 0.38"]
build-backend = "setuptools.build_meta"
[project]
name = "refuel-autolabel"
version = "0.0.4"
description = "Library for LLM powered labeling"
readme = "README.md"
authors = [{ name = "Refuel.ai", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"loguru >= 0.5.0",
"numpy >= 1.23.0",
"requests >= 2.27.0",
"datasets >= 2.7.0",
"langchain >= 0.0.194",
"nervaluate >= 0.1.8",
"pandas >= 1.3.0",
"scikit-learn >= 1.0.0",
"tenacity >= 8.2.2",
"SQLAlchemy == 1.4.47",
"regex >= 2023.6.3",
"rich >= 13.3.5",
"scipy >= 1.10.1",
"pydantic >= 1.10.9",
"torch >= 1.10.0",
"matplotlib >= 3.5.0",
"wget >= 3.2"
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = [
"black",
"bumpver",
"pip-tools",
"pytest",
"pytest-mock",
"pre-commit"
]
openai = [
"openai >= 0.27.4",
"tiktoken >= 0.3.3"
]
anthropic = [
"anthropic >= 0.2.6"
]
huggingface = [
"transformers >= 4.25.0"
]
google = [
"google-cloud-aiplatform>=1.25.0"
]
all = [
"black",
"bumpver",
"pip-tools",
"pytest",
"pytest-mock",
"pre-commit",
"openai >= 0.27.4",
"tiktoken >= 0.3.3",
"anthropic >= 0.2.6",
"transformers >= 4.25.0",
"google-cloud-aiplatform>=1.25.0"
]
[project.urls]
Homepage = "https://github.com/refuel-ai/autolabel"
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''