-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
105 lines (97 loc) · 2.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
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 = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "panoptes_aggregation"
description = "Aggregation code for Zooniverse panoptes projects."
authors = [
{name = "Coleman Krawczyk", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License"
]
dynamic = ["version"]
requires-python = ">=3.8,<3.12"
dependencies = [
"beautifulsoup4>=4.8.1,<4.13",
"collatex>=2.3,<2.4",
"hdbscan>=0.8.20,<=0.8.33",
"lxml>=4.4,<4.10",
"numpy>=1.22.0,<1.26.3",
"packaging>=20.1,<23.3",
"pandas>=1.4.0,<2.1.4",
"progressbar2>=3.39,<4.3",
"python-levenshtein>=0.21.0,<0.24",
"python-slugify>=7.0.0,<8.1",
"pyyaml>=6.0,<6.1",
"scikit-learn>=1.2.0,<1.3.3",
"scipy>=1.10.0,<1.11.4",
"werkzeug>=2.3.0,<3.0.2",
"shapely>=2.0,<2.0.3"
]
[project.optional-dependencies]
online = [
"azure-identity>=1,<2",
"azure-storage-blob>=12,<13",
"celery>=5.3,<5.4",
"redis>=5,<6",
"flower>2,<3",
"flask>=2.3,<3.1",
"flask-cors>=3.0,<4.1",
"panoptes-client>=1.6,<1.7",
"requests>=2.28,<2.32",
"gunicorn>=20.0,<21.3",
"sentry-sdk[flask]>=1.0,<1.36",
"newrelic>=8.4.0,<9.1.3",
"gitpython>=3.0.0,<3.2"
]
gui = [
"Gooey>=1.0.8.1,<1.1"
]
doc = [
"matplotlib>=3.5.1,<3.9",
"myst-nb>=0.13.2,<1.1",
"sphinx>=5.2.0,<7.3",
"sphinxcontrib-httpdomain>=1.7.0,<1.9",
"sphinx_rtd_theme>=0.4.3,<1.4"
]
test = [
"coverage>=4.5.3,<7.4",
"coveralls>=3.0.0,<3.3.2",
"flake8>=6.0,<6.2",
"flake8-black>=0.3.4,<0.4",
"flake8-bugbear>=23.5,<23.10",
"pytest>=7.1.2,<7.4.4",
"pytest-subtests>=0.10.0,<0.11.1"
]
[project.scripts]
panoptes_aggregation = "panoptes_aggregation.scripts.aggregation_parser:main"
[project.gui-scripts]
panoptes_aggregation_gui = "panoptes_aggregation.scripts.gui:gui"
[project.urls]
Documentation = "https://aggregation-caesar.zooniverse.org/docs"
Source = "https://github.com/zooniverse/aggregation-for-caesar"
[tool.flit.sdist]
include = [
"panoptes_aggregation/scripts/icons/*",
"LICENSE"
]
exclude = [
"docs/",
"kubernetes",
"scripts/make_docs.sh"
]
[tool.coverage.run]
omit = [
"*test*",
"panoptes_aggregation/scripts/gui*.py",
"panoptes_aggregation/scripts/no_gooey.py",
"panoptes_aggregation/scripts/path_type.py"
]
source = ["panoptes_aggregation"]
command_line = "-m pytest"
[tool.coverage.report]
show_missing = true