-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
105 lines (94 loc) · 2.56 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "crowd-kit"
description = "Computational Quality Control for Crowdsourcing"
keywords = ["crowdsourcing", "data labeling", "answer aggregation", "truth inference", "learning from crowds", "machine learning", "quality control", "data quality"]
license = {text = "Apache 2.0"}
authors = [{name = "Toloka"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Typing :: Typed",
]
requires-python = ">= 3.8"
dependencies = [
"attrs",
"nltk",
"numpy",
"pandas >= 1.1.0",
"pyarrow",
"scikit-learn",
"tqdm",
"transformers",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
"Homepage" = "https://github.com/Toloka/crowd-kit"
"Bug Tracker" = "https://github.com/Toloka/crowd-kit/issues"
"Documentation" = "https://crowd-kit.readthedocs.io/"
"API Reference" = "https://crowd-kit.readthedocs.io/"
"Source Code" = "https://github.com/Toloka/crowd-kit"
"Release Notes" = "https://github.com/Toloka/crowd-kit/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"black",
"build",
"codecov",
"flake8",
"ipywidgets",
"isort",
"mypy",
"nbqa",
"notebook",
"pandas-stubs",
"pre-commit",
"pytest",
"pyupgrade",
"twine",
"types-tqdm"
]
docs = [
"mkdocs-material",
"mkdocstrings-python"
]
learning = [
"torch >= 1.6.0",
"transformers >= 4.0.0"
]
[tool.setuptools]
zip-safe = true
include-package-data = true
[tool.setuptools.packages.find]
include = ["crowdkit*"]
namespaces = false
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "crowdkit.__version__"}
[tool.mypy]
ignore_missing_imports = true
plugins = ["numpy.typing.mypy_plugin"]
strict = true
[tool.isort]
profile = "black"
src_paths = ["crowdkit", "tests"]
[tool.pyupgrade]
py38-plus = true