-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1.16 KB
/
setup.py
File metadata and controls
30 lines (29 loc) · 1.16 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
# coding=utf-8
import setuptools
setuptools.setup(name='districtgenerator',
version='0.0.1',
description='Energy profile generation and '
'optimization of districts',
url='https://github.com/RWTH-EBC/districtgenerator',
author='Joel Schölzel',
author_email='joel.schoelzel@eonerc.rwth-aachen.de',
license='MIT License',
packages=setuptools.find_packages(),
install_requires=[
'numpy>=1.20.1',
'pandas>=1.2.3',
'matplotlib>=3.3.4',
'scipy>=1.6.1',
'teaser==1.3.0',
'richardsonpy',
'pylightxl',
'gurobipy>=9.5.1',
'xlsxwriter~=3.2.0',
'geopy~=2.4.1',
'pyproj~=3.7.0',
'openpyxl==3.1.5',
'seaborn==0.13.2',
'OpenDHW>=0.2.2'
],
classifiers=("Programming Language :: Python :: 3", ),
)