forked from e2nIEE/pandapower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (45 loc) · 1.86 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
# -*- coding: utf-8 -*-
# Copyright (c) 2016-2019 by University of Kassel and Fraunhofer Institute for Energy Economics
# and Energy System Technology (IEE), Kassel. All rights reserved.
from setuptools import setup, find_packages
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 :: 5 - Production/Stable',
'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('.travis.yml', 'rb') as f:
lines = f.read().decode('utf-8')
for version in re.findall('python: 3.[0-9]', lines):
classifiers.append('Programming Language :: Python :: 3.%s'%version[-1])
long_description = '\n\n'.join((install, changelog))
setup(
name='pandapower',
version='2.1.0',
author='Leon Thurner, Alexander Scheidler',
author_email='[email protected], [email protected]',
description='Convenient Power System Modelling and Analysis based on PYPOWER and pandas',
long_description=long_description,
url='http://www.pandapower.org',
license='BSD',
install_requires=["pandas>=0.17",
"networkx",
"scipy",
"numpy>=0.11",
"packaging"],
extras_require = {":python_version<'3.0'": ["future"],
"docs": ["numpydoc", "sphinx", "sphinx_rtd_theme"]},
packages=find_packages(),
include_package_data=True,
classifiers = classifiers
)