forked from refuel-ai/autolabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
128 lines (123 loc) · 2.68 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[build-system]
requires = ["setuptools>=65.0.0", "wheel >= 0.38"]
build-backend = "setuptools.build_meta"
[project]
name = "refuel-autolabel"
version = "0.0.16"
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.342",
"nervaluate >= 0.1.8",
"pandas >= 1.3.0",
"scikit-learn >= 1.0.0",
"tenacity >= 8.2.2",
"SQLAlchemy >= 2.0.19",
"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",
"typer[all] >= 0.9.0",
"simple-term-menu >= 1.6.1",
"transformers >= 4.25.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-asyncio",
"pytest-mock",
"pre-commit"
]
openai = [
"openai == 1.2.2",
"tiktoken >= 0.3.3"
]
anthropic = [
"anthropic == 0.3.0"
]
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-asyncio",
"pytest-mock",
"pre-commit",
"openai == 1.2.2",
"tiktoken >= 0.3.3",
"anthropic == 0.3.0",
"transformers >= 4.25.0",
"google-cloud-aiplatform>=1.25.0",
"google-search-results>=2.4.2",
"cohere>=4.11.2",
"redis >= 3.5.3",
"sentence_transformers",
"pdfplumber >= 0.10.2",
"pdf2image >= 1.16.3",
"pytesseract >= 0.3.10",
"beautifulsoup4 >= 4.12.2",
"httpx",
"fake_useragent",
"pillow >= 9.5.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
)/
'''
[project.scripts]
autolabel = "autolabel.cli.main:app"