-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpyproject.toml
58 lines (55 loc) · 1.54 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
[build-system]
requires = [
"setuptools>=62",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "small-text"
version = "2.0.0.dev2"
license = {file = "LICENSE"}
description="Active Learning for Text Classification in Python."
authors = [
{name = "Christopher Schröder", email = "[email protected]"}
]
maintainers = [
{name = "Christopher Schröder", email = "[email protected]"}
]
readme = {file = "README.md", content-type = "text/markdown"}
keywords = ["active learning", "text classification"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
]
requires-python = ">= 3.8"
dependencies = [
"dill>=0.3.7",
"scipy",
"numpy>=1.21.0",
"scikit-learn>=0.24.1",
"tqdm",
"packaging",
"tokenizers>=0.11.5",
"toml"
]
[project.optional-dependencies]
pytorch = [
"torch>=1.6.0"
]
transformers = [
"small-text[pytorch]",
"transformers>=4.0.0"
]
[project.urls]
Documentation = "https://small-text.readthedocs.io"
Repository = "https://github.com/webis-de/small-text"
Issues = "https://github.com/webis-de/small-text/issues"
Changelog = "https://github.com/webis-de/small-text/blob/main/CHANGELOG.md"