generated from labteral/python-package
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.24 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fastc"
version = "2.2407.0"
description = "Unattended Lightweight Text Classifiers with State-of-the-Art LLM Embeddings"
authors = [
{name = "Rodrigo Martínez (brunneis)", email = "[email protected]"}
]
license = {text = "GNU General Public License v3 (GPLv3)"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"transformers",
"huggingface-hub",
"torch",
"tqdm",
"scikit-learn",
"joblib",
]
[project.urls]
Repository = "https://github.com/EveripediaNetwork/fastc"
[project.optional-dependencies]
dev = [
"build",
"installer",
"wheel",
"twine",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["fastc*"]
[tool.setuptools]
package-data = {"fastc" = ["*"]}
zip-safe = false