-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathpyproject.toml
111 lines (107 loc) · 2.27 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
requires = ["setuptools>=65.0.0", "wheel >= 0.38"]
build-backend = "setuptools.build_meta"
[project]
name = "refuel-autolabel"
version = "0.0.9"
description = "Label, clean and enrich text datasets with LLMs"
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.210",
"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",
"ipywidgets == 8.0.6",
"jsonschema >= 4.17.3",
"tabulate >= 0.9.0"
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = [
"black",
"bumpver",
"mkdocs",
"mkdocs-autorefs",
"mkdocs-jupyter",
"mkdocs-material",
"mkdocs-material-extensions",
"mkdocs-table-reader-plugin",
"mkdocstrings",
"mkdocstrings-python",
"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",
"sentence_transformers"
]
google = [
"google-cloud-aiplatform>=1.25.0"
]
cohere = [
"cohere>=4.11.2"
]
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",
"cohere>=4.11.2",
"sentence_transformers"
]
[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
)/
'''