forked from oemof/tespy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 791 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='TESPy',
version='0.1.2 dev',
description='Thermal Engineering Systems in Python (TESPy)',
url='http://github.com/oemof/tespy',
author='Francesco Witte',
author_email='francesco.witte@web.de',
long_description=read('README.rst'),
license='GPL-3.0',
packages=['tespy', 'tespy.components', 'tespy.tools'],
python_requires='>=3',
install_requires=['CoolProp >= 6.0.0',
'matplotlib >= 2.0.2',
'numpy >= 1.13.3',
'pandas >= 0.19.2',
'scipy >= 0.19.1',
'tabulate >= 0.8.2'])