forked from RWTH-EBC/districtgenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
16 lines (15 loc) · 784 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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', 'pandas', 'matplotlib', 'scipy',
'teaser', 'richardsonpy', 'pylightxl', 'gurobipy', 'seaborn', 'openpyxl'],
classifiers=("Programming Language :: Python :: 3", ),
)