-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
108 lines (105 loc) · 2.67 KB
/
setup.cfg
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
[metadata]
name = moptipy
version = attr: moptipy.version.__version__
description = A package for metaheuristic optimization in Python.
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
algorithm performance evaluation
BGFS
BOBYQA
continuous optimization
crossover
DE
Differential Evolution
discrete optimization
EA
ECDF
Empirical Cumulative Distribution Function
ERT
Evolutionary Algorithm
Evolutionary Computation
Expected Running Time
experiments
Frequency Fitness Assignment
Hill Climber
Job Shop Scheduling Problem
JSSP
metaheuristics
Memetic Algorithm
multi-objective optimization
mutation
NSGA-II
optimization
operations research
performance plots
permutations
Plant Propagation Algorithm
PPA
Random Sampling
Random Walk
Randomized Local Search
RLS
Simulated Annealing
single-objective optimization
statistics
license = GPL 3.0
license_files = file: LICENSE
classifiers =
Development Status :: 4 - Beta
Framework :: Matplotlib
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Natural Language :: English
Natural Language :: German
Natural Language :: Chinese (Simplified)
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.12
Topic :: Education
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Visualization
url = https://thomasweise.github.io/moptipy
author = Thomas Weise
author_email = [email protected]
maintainer = Thomas Weise
maintainer_email = [email protected]
project_urls =
Documentation = https://thomasweise.github.io/moptipy
Source = https://github.com/thomasWeise/moptipy/
Tracker = https://github.com/thomasWeise/moptipy/issues
[options]
include_package_data = True
install_requires =
cmaes >= 0.11.1
intel-cmplr-lib-rt >= 2025.0.0
numpy < 2
numba >= 0.60.0
matplotlib >= 3.9.2
pdfo >= 2.2.0
psutil >= 6.1.0
pycommons >= 0.8.57
scikit-learn >= 1.5.2
scipy >= 1.14.1
packages = find:
python_requires = >= 3.12
zip_safe = False
[options.package_data]
moptipy = py.typed
moptipy.examples.jssp = *.txt
[options.packages.find]
exclude =
.coverage*
.github*
.mypy_cache*
.pytest_cache*
.ruff_cache*
dist*
docs*
examples*
moptipy.egg-info*
tests*