-
Notifications
You must be signed in to change notification settings - Fork 419
/
Copy pathpyproject.toml
59 lines (55 loc) · 1.49 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
[project]
name = "pymoo"
description = "Multi-Objective Optimization in Python"
authors = [{ name = "Julian Blank", email = "[email protected]" }]
readme = "README.rst"
license = "Apache-2.0"
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
]
keywords = ["optimization"]
dynamic = ["version"]
urls = { homepage = "https://pymoo.org" }
requires-python = ">= 3.9"
dependencies = [
"numpy>=1.19.3",
"scipy>=1.1",
"matplotlib>=3",
"autograd>=1.4",
"cma>=3.2.2",
"alive-progress",
"dill",
"Deprecated",
]
[build-system]
requires = ["setuptools>=77", "numpy", "Cython>=0.29"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "pymoo.version.__version__" }
[tool.setuptools.packages.find]
where = ["."]
include = ["pymoo*"]
[dependency-groups]
dev = [
"numba",
"pytest",
"nbformat",
"jupyter",
"pyrecorder",
"optproblems",
"pandas",
"ipython",
"ipykernel",
]