-
Notifications
You must be signed in to change notification settings - Fork 112
/
setup.py
49 lines (46 loc) · 1.69 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
# Copyright (c) 2010-2015 Richard Lincoln. 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 setup, find_packages
setup(
name='PYPOWER',
version='5.1.17',
author='Richard Lincoln',
author_email='[email protected]',
description='Solves power flow and optimal power flow problems',
long_description='\n\n'.join(
open(f, 'rb').read().decode('utf-8')
for f in ['README.rst', 'CHANGELOG.rst']),
url='https://github.com/rwl/PYPOWER',
license='BSD',
install_requires=[
# Deactivated to avoid problems with system packages.
# Manual installation of NumPy and SciPy required.
# 'numpy>=1.6',
# 'scipy>=0.9',
],
entry_points={'console_scripts': [
'pf = pypower.main:pf',
'opf = pypower.main:opf'
]},
packages=find_packages(),
include_package_data=True,
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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
],
)