forked from oemof/oemof-thermal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (23 loc) · 845 Bytes
/
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
#! /usr/bin/env python
# -*- encoding: utf-8 -*-
from setuptools import find_packages, setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='oemof.thermal',
version='0.0.1',
author='oemof developer group',
author_email='[email protected]',
description=(
'Thermal energy components for '
'the open energy modelling framework.'
),
url='https://github.com/oemof/oemof-thermal',
long_description=read('README.rst'),
packages=["oemof"] + ["oemof." + p for p in find_packages("src/oemof")],
package_dir={"": "src"},
install_requires=['oemof',
'matplotlib',
'pvlib',
'numpy >= 1.7.0',
'pandas >= 0.18.0'])