-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (47 loc) · 1.29 KB
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "multi-objective-optimization"
version = "1.0.0"
description = "Implementations of five multi-objective evolutionary algorithms on the MOP2 benchmark problem."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Mohammad Sadegh Hajibabaie", email = "hajibabaie.mohammad@gmail.com" },
]
keywords = [
"multi-objective optimization",
"evolutionary algorithms",
"pareto front",
"metaheuristics",
"nsga-ii",
"mopso",
"spea2",
"pesa-ii",
"moea/d",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
"Intended Audience :: Science/Research",
]
dependencies = [
"numpy>=1.21",
"scipy>=1.7",
"matplotlib>=3.4",
]
[project.optional-dependencies]
test = ["pytest>=7.0"]
[project.urls]
Homepage = "https://github.com/hajibabaie/multi-objective-optimization"
Repository = "https://github.com/hajibabaie/multi-objective-optimization"
[project.scripts]
mopt = "mopt.cli:main"
[tool.setuptools.packages.find]
include = ["mopt*"]
[tool.pytest.ini_options]
testpaths = ["tests"]