-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (30 loc) · 1.19 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 setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='netallocation',
version='0.0.8',
author='Fabian Hofmann (FIAS)',
author_email='[email protected]',
description='Package for allocating flows and costs in a PyPSA network',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/FRESNA/netallocation',
license='GPLv3',
packages=find_packages(exclude=['doc', 'test']),
include_package_data=True,
install_requires=['pypsa','pandas >= 1.0', 'pyyaml', 'xarray >= 0.15', 'progressbar2',
'sparse', 'dask', 'h5py', 'scipy', 'geopandas', 'pyyaml >= 5.0',
'netcdf4'],
extras_require={
'docs': [
'sphinx >= 1.4',
'sphinx_rtd_theme']},
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',
])