forked from lensum/districtgenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 736 Bytes
/
setup.py
File metadata and controls
16 lines (15 loc) · 736 Bytes
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='Sarah Henn',
author_email='shenn@eonerc.rwth-aachen.de',
license='MIT License',
packages=setuptools.find_packages(),
install_requires=['numpy', 'pandas', 'matplotlib', 'scipy',
'teaser', 'richardsonpy', 'pylightxl'],
classifiers=("Programming Language :: Python :: 3", ),
)