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
59 lines (55 loc) · 1.49 KB
/
Copy pathsetup.py
File metadata and controls
59 lines (55 loc) · 1.49 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
54
55
56
57
58
59
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
INSTALL_REQUIRES = [
"cloudpickle>=2.2",
"dill>=0.3.5",
"fonttools>=4.25",
"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",
]
EXTRAS_REQUIRE = {
"examples": [
"scikit-learn>=1.3.0",
"dimod>=0.12",
],
"notebooks": [
"nbconvert>=7",
"ipykernel>=6",
],
"generation": [
"hyperopt>=0.2.7",
"setuptools<81",
],
}
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=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
)