forked from e2nIEE/pandapipes
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (48 loc) · 2.3 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
# Copyright (c) 2020-2023 by Fraunhofer Institute for Energy Economics
# and Energy System Technology (IEE), Kassel, and University of Kassel. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
from setuptools import find_packages
from setuptools import setup
import re
with open('README.rst', 'rb') as f:
install = f.read().decode('utf-8')
with open('CHANGELOG.rst', 'rb') as f:
changelog = f.read().decode('utf-8')
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3']
with open('.github/workflows/run_tests_master.yml', 'rb') as f:
lines = f.read().decode('utf-8')
versions = set(re.findall('3.[7-9]', lines)) | set(re.findall('3.1[0-9]', lines))
for version in versions:
classifiers.append('Programming Language :: Python :: %s' % version)
long_description = '\n\n'.join((install, changelog))
setup(
name='pandapipes',
version='0.8.4',
author='Simon Ruben Drauz-Mauel, Daniel Lohmeier, Jolando Marius Kisse',
author_email='[email protected], [email protected], '
description='A pipeflow calculation tool that complements pandapower in the simulation of multi energy grids',
long_description=long_description,
long_description_content_type='text/x-rst',
url='http://www.pandapipes.org',
license='BSD',
install_requires=["pandapower>=2.11.1", "matplotlib", "shapely"],
extras_require={"docs": ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex"],
"plotting": ["plotly", "python-igraph"],
"test": ["pytest", "pytest-xdist", "nbmake"],
"all": ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex",
"plotly", "python-igraph", "pytest", "pytest-xdist", "nbmake"]},
packages=find_packages(),
include_package_data=True,
classifiers=classifiers
)