-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
80 lines (77 loc) · 2.23 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
[project]
authors = []
requires-python = "<3.13,>=3.9"
dependencies = [
"pip>=22.2.2",
"statsmodels>=0.13.2",
"pandas>=1.2.0",
"scikit-learn>=1.0.0",
"tqdm>=4.0.0",
"numpy>=1.20.0",
]
name = "cluster-experiments"
version = "0.21.0"
description = ""
readme = "README.md"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
dev = [
"pytest<9.0.0,>=5.4.3",
"black<25.0.0,>=22.12.0",
"ruff<1.0.0,>=0.7.4",
"mktestdocs<1.0.0,>=0.2.2",
"pytest-cov<7.0.0,>=2.10.1",
"pytest-sugar<2.0.0,>=0.9.4",
"pytest-slow-last<1.0.0,>=0.1.3",
"coverage<8.0.0,>=7.6.7",
"pytest-reportlog<1.0.0,>=0.4.0",
"pytest-duration-insights<1.0.0,>=0.1.2",
"pytest-clarity<2.0.0,>=1.0.1",
"pytest-xdist<4.0.0,>=3.6.1",
"pre-commit<5.0.0,>=2.6.0",
"ipykernel<7.0.0,>=6.15.1",
"twine<6.0.0,>=5.1.1",
"build<2.0.0.0,>=1.2.2.post1",
"tox<5.0.0,>=4.23.2",
"mkdocs<2.0.0,>=1.4.0",
"mkdocs-material<10.0.0,>=8.5.0",
"mkdocstrings[python]<1.0.0,>=0.25.0",
"jinja2<4.0.0,>=3.1.0",
"mkdocs-jupyter<1.0.0,>=0.22.0",
"matplotlib<4.0.0,>=3.4.3",
"plotnine<1.0.0,>=0.8.0",
]
test = [
"pytest<9.0.0,>=5.4.3",
"black<25.0.0,>=22.12.0",
"ruff<1.0.0,>=0.7.4",
"mktestdocs<1.0.0,>=0.2.2",
"pytest-cov<7.0.0,>=2.10.1",
"pytest-sugar<2.0.0,>=0.9.4",
"pytest-slow-last<1.0.0,>=0.1.3",
"coverage<8.0.0,>=7.6.7",
"pytest-reportlog<1.0.0,>=0.4.0",
"pytest-duration-insights<1.0.0,>=0.1.2",
"pytest-clarity<2.0.0,>=1.0.1",
"pytest-xdist<4.0.0,>=3.6.1",
]
docs = [
"mkdocs<2.0.0,>=1.4.0",
"mkdocs-material<10.0.0,>=8.5.0",
"mkdocstrings<1.0.0,>=0.18.0",
"jinja2<4.0.0,>=3.1.0",
"mkdocs-jupyter<1.0.0,>=0.22.0",
"plotnine<1.0.0,>=0.8.0",
"matplotlib<4.0.0,>=3.4.3",
]