-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
39 lines (36 loc) · 911 Bytes
/
setup.py
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
import setuptools
name = "celavi"
version = "1.3.1"
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setuptools.setup(
name=name,
version=version,
author="Annika Eberle",
author_email="[email protected]",
description="Codebase for the Circular Economy Lifecycle Assessment and VIsualization (CELAVI) project",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["celavi"],
install_requires=[
"pytest",
"mypy",
"black",
"sphinx",
"pandas",
"matplotlib",
"numpy",
"networkx",
"graphviz",
"simpy",
"networkx-query",
"olca-ipc==0.0.10",
"pyutilib",
"joblib",
"plotly",
"kaleido==0.1.0.post1",
"scikit-learn",
"PyYAML",
"sphinx-rtd-theme"
]
)