-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (37 loc) · 856 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
# Setup.py
from setuptools import find_packages, setup
setup(
name="epowcore",
version="0.1.0",
description="A converter between different power system model formats and a generic data format.",
url="",
author="KIT-IAI-ESA",
author_email="",
license="",
packages=find_packages(include=["epowcore", "epowcore.*"]),
install_requires=[
"dataclasses",
"geojson",
"networkx",
"matplotlib",
"scipy",
"pyyaml",
],
extras_require={
"dev": [
"pytest",
"pytest-cov",
"black",
"mypy",
"sphinx",
"sphinx_rtd_theme",
"pylint",
"isort",
"pre-commit",
],
"simscape": [
"matlabengine==9.13.9",
],
},
zip_safe=False,
)