-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
32 lines (29 loc) · 1.24 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
32
from __future__ import absolute_import
from setuptools import setup, find_packages
from io import open
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='vresutils',
author='Jonas Hoersch (KIT,FIAS), David Schlachtberger (FIAS), Sarah Becker (FIAS)',
author_email='[email protected]',
description='Varying Renewable Energy System Utilities',
long_description=long_description,
url='https://github.com/FRESNA/vresutils',
license='GPLv3',
packages=find_packages(exclude=['doc', 'test']),
use_scm_version={'write_to': 'vresutils/version.py'},
setup_requires=['setuptools_scm'],
install_requires=['countrycode', 'fiona', 'matplotlib',
'memory_profiler',
'networkx>=2', 'numpy', 'pandas>=0.19.0',
'pyomo', 'scipy', 'pyproj', 'pyshp', 'rasterio>=1.0',
'shapely', 'six'],
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',
])