Skip to content

Commit

Permalink
revise setup and requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
uvchik committed Apr 17, 2018
1 parent 3127403 commit 6cf3cb1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 16 deletions.
2 changes: 0 additions & 2 deletions rtd_requirements.txt

This file was deleted.

26 changes: 12 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,23 @@
"""

from setuptools import setup
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.2dev',
author='oemof developing group',
url='http://github.com/oemof/demandlib',
author='oemof developer group',
url='https://oemof.org/',
license='GPL3',
author_email='oemof@rl-institut.de',
description='Demandlib of the open energy modelling framework',
packages=['demandlib', 'demandlib.examples'],
package_data = {
'demandlib': [os.path.join('bdew_data', '*.csv')],
'demandlib.examples': ['*.csv']},
install_requires=['numpy >= 1.7.0',
'pandas >= 0.18.0',
'matplotlib'],
entry_points={
'console_scripts': [
'demandlib_heat_example = demandlib.examples.heat_demand_example:heat_example',
'demandlib_power_example = demandlib.examples.power_demand_example:power_example',]}
long_description=read('README.rst'),
packages=find_packages(),
install_requires=['numpy >= 1.7.0, <= 1.14.2',
'pandas >= 0.18.0, <= 0.22'],
)

0 comments on commit 6cf3cb1

Please sign in to comment.