forked from PyPSA/powerplantmatching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (58 loc) · 1.75 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from __future__ import absolute_import
from codecs import open
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="powerplantmatching",
version="0.5.7",
author="Fabian Hofmann (FIAS), Jonas Hoersch (KIT), Fabian Gotzens (FZ Jülich)",
author_email="[email protected]",
description="Toolset for generating and managing Power Plant Data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/FRESNA/powerplantmatching",
license="GPLv3",
# packages=find_packages(include='matching_analysis'),
packages=["powerplantmatching"],
include_package_data=True,
install_requires=[
"numpy",
"scipy",
"pandas>=0.24.0",
"networkx>=1.10",
"pycountry",
"country_converter",
"xlrd",
"seaborn",
"pyyaml >=5.1.0",
"requests",
"matplotlib",
"geopy",
"xlrd",
"unidecode",
"entsoe-py >=0.3.1",
"deprecation",
"tqdm",
"openpyxl",
],
extras_require={
"docs": [
"numpydoc",
"sphinx",
"sphinx_rtd_theme",
"nbsphinx",
"sphinx-automodapi",
],
"dev": ["pre-commit", "pytest", "pytest-cov"],
},
classifiers=[
"Programming Language :: Python :: 3",
# '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",
],
)