-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
50 lines (44 loc) · 1.12 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
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='dhnx',
version='0.0.4dev0',
description='Simulation and optimization of district heating and cooling networks',
author="oemof developer group",
author_email='[email protected], [email protected]',
long_description=read('README.rst'),
long_description_content_type="text/x-rst",
packages=[
'dhnx',
'dhnx.gistools',
'dhnx.optimization',
],
package_data={
'dhnx': [
"*.csv",
os.path.join("component_attrs", "*.csv"),
],
},
install_requires=[
'pandas >= 0.18.0',
'matplotlib',
'networkx',
'pillow',
'folium',
'addict',
'oemof.solph >= 0.5',
'scipy >= 1.5',
],
extras_require={
'cartopy': ['cartopy'],
'geopandas': ['geopandas'],
'osmnx': ['osmnx >= 0.16.1'],
"tests": [
"geopandas", "osmnx",
"CoolProp",
],
}
)