-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (38 loc) · 1.14 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
[tool.poetry]
name = "pyVolutionary"
version = "2.5.1"
description = "pyVolutionary is a package collecting metaheuristic algorithms, available for free usage and able to solve a wide range of optimization problems."
authors = ["Matteo Cacciola <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/matteocacciola/pyvolutionary"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Software Development"
]
[tool.poetry.dependencies]
python = ">=3.10"
pydantic = "^2.9.0"
numpy = "^2.1.1"
pandas = "^2.2.0"
scipy = "^1.12.0"
[tool.poetry.group.test.dependencies]
coverage = "^7.3.2"
pytest = "^7.4.3"
requests-mock = "^1.11.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
pylint = "^3.0.2"
wrapt = "^1.16.0"
sphinx = "^7.2.6"
sphinx-rtd-theme = "^1.3.0"
myst-parser = "^2.0.0"
[tool.poetry.group.demo.dependencies]
matplotlib = "^3.7.5"
[tool.poetry.group.examples.dependencies]
opfunu = "^1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"