-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
117 lines (111 loc) · 3.25 KB
/
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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import io
import re
from glob import glob
from os.path import basename, dirname, join, splitext
from setuptools import find_packages, setup
def read(*names, **kwargs):
with io.open(
join(dirname(__file__), *names),
encoding=kwargs.get("encoding", "utf8"),
) as fh:
return fh.read()
setup(
name="deflex",
version="0.4.0rc1",
license="MIT",
description=(
"deflex - flexible multi-regional energy system model for "
"heat, power and mobility"
),
long_description="%s\n%s"
% (
re.compile("^.. start-badges.*^.. end-badges", re.M | re.S).sub(
"", read("README.rst")
),
re.sub(":[a-z]+:`~?(.*?)`", r"``\1``", read("CHANGELOG.rst")),
),
long_description_content_type="text/x-rst",
author="Uwe Krien",
author_email="[email protected]",
url="https://github.com/reegis/deflex",
packages=find_packages("src"),
package_dir={"": "src"},
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
],
project_urls={
"Documentation": "https://deflex.readthedocs.io/",
"Changelog": "https://deflex.readthedocs.io/en/latest/changelog.html",
"Issue Tracker": "https://github.com/reegis/deflex/issues",
},
keywords=[
# eg: 'keyword1', 'keyword2', 'keyword3',
],
python_requires=">=3.8",
install_requires=[
"oemof.solph > 0.4",
"oemof.network",
"pandas > 1.4",
"requests",
"networkx > 2.0",
"numpy >= 1.19.4",
"openpyxl >= 1.3.0",
"dill >= 0.3.3",
],
extras_require={
"dev": [
"pytest",
"sphinx",
"sphinx_rtd_theme",
"requests",
"pygeos",
"geopandas",
"coveralls",
"scenario_builder",
"reegis",
"matplotlib",
"sphinx-autoapi",
"shapely",
"requests",
"termcolor",
],
"plot": ["pygraphviz", "matplotlib"],
"scenario": ["scenario_builder", "reegis"],
"geo": ["pygeos", "geopandas", "descartes"],
"example": [
"matplotlib",
"requests",
"pytz",
],
"dummy": ["oemof"],
},
package_data={
"deflex": [
join("data", "static", "*.csv"),
join("data", "static", "*.txt"),
join("data", "geometries", "*.csv"),
join("data", "geometries", "*.geojson"),
"*.ini",
]
},
entry_points={
"console_scripts": [
"deflex-compute = deflex.console_scripts:main",
"deflex-results = deflex.console_scripts:result",
]
},
)