-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
109 lines (99 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
106
107
108
109
[tool.poetry]
name = "deap-er"
version = "2.0.0"
description = "Distributed Evolutionary Algorithms in Python - Entirely Reworked"
authors = ["Mattias Aabmets <[email protected]>"]
license = "MIT License"
readme = "README.md"
packages = [
{ include = "deap_er" }
]
keywords = [
"deap",
"evolution",
"evolutionary algorithms",
"genetic algorithms",
"genetic programming",
"symbolic regression",
"hypervolume"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Artificial Life",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: OS Independent"
]
[tool.poetry.urls]
"Repository" = "https://github.com/aabmets/deap-er"
"Documentation" = "https://deap-er.readthedocs.io"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^2.0.1"
scipy = "^1.14.0"
dill = "^0.3.8"
setuptools = "^72.1.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
pytest-xdist = {extras = ["psutil"], version = "^3.6.1"}
coverage = "^7.6.1"
flake8 = "^7.1.1"
isort = "^5.13.2"
mypy = "^1.11.1"
black = "^24.8.0"
Sphinx = "^7.4.7"
sphinx-rtd-theme = "2.0.0"
sphinx_design = "^0.6.1"
[tool.pytest.ini_options]
cache_dir = ".cache"
console_output_style = "count"
filterwarnings = ["ignore::DeprecationWarning"]
testpaths = ["tests"]
addopts = [
"--cov=deap_er",
"--cov-report=html",
"--no-cov-on-fail",
"--import-mode=append",
"--numprocesses=auto",
"--maxprocesses=8",
"--dist=worksteal"
]
pythonpath = [
".",
"./deap_er"
]
[tool.coverage.run]
branch = true
source = ["deap_er/*"]
[tool.coverage.report]
fail_under = 90
skip_empty = true
ignore_errors = true
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"@abstractmethod"
]
[tool.coverage.html]
directory = ".htmlcov"
[tool.mypy]
files = ["deap_er"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"