-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
74 lines (71 loc) · 2.07 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
[metadata]
name = moptipyapps
version = attr: moptipyapps.version.__version__
description = Applications of Metaheuristic Optimization in Python.
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
bin packing
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/moptipyapps
author = Thomas Weise
author_email = [email protected]
maintainer = Thomas Weise
maintainer_email = [email protected]
project_urls =
Documentation = https://thomasweise.github.io/moptipyapps
Source = https://github.com/thomasWeise/moptipyapps/
Tracker = https://github.com/thomasWeise/moptipyapps/issues
[options]
include_package_data = True
install_requires =
certifi >= 2024.8.30
defusedxml >= 0.7.1
moptipy >= 0.9.136
numpy < 2
numba >= 0.60.0
matplotlib >= 3.9.2
pycommons >= 0.8.58
scipy >= 1.14.1
urllib3 >= 2.2.3
packages = find:
python_requires = >= 3.12
zip_safe = False
[options.package_data]
moptipyapps = py.typed
moptipyapps.binpacking2d = *.txt, *.bib
moptipyapps.qap.qaplib = *.dat
moptipyapps.tsp.tsplib = *.tsp, *.atsp, *.opt.tour
moptipyapps.ttp.robinx = *.xml
[options.packages.find]
exclude =
.coverage*
.github*
.mypy_cache*
.pytest_cache*
.ruff_cache*
dist*
docs*
examples*
moptipy.egg-info*
moptipyapps.egg-info*
tests*