forked from oemof/oemof-demand
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (23 loc) · 805 Bytes
/
setup.py
File metadata and controls
29 lines (23 loc) · 805 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
25
26
27
28
29
#! /usr/bin/env python
"""Setup information of demandlib.
"""
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='demandlib',
version='0.1.9dev',
author='oemof developer group',
url='https://oemof.org/',
license='MIT',
author_email='contact@oemof.org',
description='Demandlib of the open energy modelling framework',
long_description=read('README.rst'),
long_description_content_type='text/x-rst',
packages=find_packages(),
install_requires=['numpy >= 1.17.0',
'pandas >= 1.0'],
package_data={
'demandlib': [os.path.join('bdew_data', '*.csv')],
'demandlib.examples': ['*.csv']},
)