forked from PyPSA/powerplantmatching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (25 loc) · 1.03 KB
/
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
29
30
31
from __future__ import absolute_import
from setuptools import setup, find_packages
from codecs import open
#with open('README.md', encoding='utf-8') as f:
# long_description = f.read()
setup(
name='powerplantmatching',
version='0.10.0',
author='Fabian Hofmann (FIAS), Jonas Hoersch (FIAS)',
author_email='[email protected]',
description='Toolset for generating and managing Power Plant Data',
# long_description=long_description,
url='https://github.com/FRESNA/powerplantmatching',
license='GPLv3',
packages=find_packages(exclude=['duke_binaries', 'Hydro aggregation.py']),
include_package_data=True,
install_requires=['numpy','scipy','pandas>=0.19.0','networkx>=1.10'],
classifiers=[
# 'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
])