-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 810 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# coding=utf-8
import setuptools
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setuptools.setup(name='districtgenerator',
python_requires='~=3.12',
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(),
include_package_data=True,
install_requires=requirements,
classifiers=("Programming Language :: Python :: 3", ),
)