-
Notifications
You must be signed in to change notification settings - Fork 150
/
pyproject.toml
103 lines (91 loc) · 1.97 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
#requires = ["hatchling"]
#build-backend = "hatchling.build"
[project]
name = "jmetalpy"
version = "1.7.1"
description = "Python version of the jMetal framework"
readme = "README.md"
authors = [
{name = "Antonio J. Nebro", email = "[email protected]"},
{name = "Antonio Benítez", email = "[email protected]"}
]
maintainers = [
{name = "Antonio J. Nebro", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.9"
]
requires-python = ">=3.8"
dependencies = [
"tqdm",
"numpy>=2.0.0",
"pandas>=2.2.0",
"plotly>=5.22.0",
"matplotlib>=3.0.2",
"scipy>=1.13.1",
"statsmodels>=0.9.0",
"mockito",
"PyHamcrest"
]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[project.optional-dependencies]
core = [
"tqdm",
"numpy>=2.0.0",
"pandas>=2.2.0",
"plotly>=5.22.0",
"matplotlib>=3.0.2",
"scipy>=1.13.1",
"statsmodels>=0.9.0",
"mockito",
]
docs = [
"tqdm",
"numpy>=2.0.0",
"pandas>=2.2.0",
"plotly>=5.22.0",
"matplotlib>=3.0.2",
"scipy>=1.13.1",
"statsmodels>=0.9.0",
"mockito",
"jupyter",
"nbsphinx"
]
distributed = [
"tqdm",
"numpy>=2.0.0",
"pandas>=2.2.0",
"plotly>=5.22.0",
"matplotlib>=3.0.2",
"scipy>=1.13.1",
"statsmodels>=0.9.0",
"mockito",
"dask[complete]>=2024.3.0",
"distributed>=2024.3.0",
"pyspark>=3.4.0"
]
complete = [
"tqdm",
"numpy>=2.0.0",
"pandas>=2.2.0",
"plotly>=3.3.0",
"matplotlib>=3.0.2",
"scipy>=1.3.0",
"statsmodels>=0.9.0",
"mockito",
"jupyter",
"nbsphinx",
"dask[complete]>=2024.3.0",
"distributed>=2024.3.0",
"pyspark>=3.4.0"
]