forked from usra-riacs/stochastic-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.26 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.26 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="stochastic-benchmark",
version="0.1.0",
author="David Bernal",
author_email="dbernalneira@usra.edu",
description="A package to analyze benchmarking results of stochastic optimization solvers",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bernalde/stochastic-benchmark",
project_urls={
"Bug Tracker": "https://github.com/bernalde/stochastic-benchmark/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.10",
install_requires=[
"cloudpickle>=2.2",
"dill>=0.3.5",
"fonttools>=4.25",
"hyperopt>=0.2.7",
"matplotlib>=3.7",
"mkl-service>=2.5.2",
"multiprocess>=0.70.18",
"munkres>=1.1.4",
"networkx>=3.0",
"numpy>=2.0",
"pandas>=2.3",
"scipy>=1.11",
"seaborn>=0.13.2",
"tqdm>=4.66",
],
)