-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (28 loc) · 1.13 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
# 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='[email protected]',
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==0.7.7',
'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'
],
classifiers=("Programming Language :: Python :: 3", ),
)