forked from jessemarkboyd/pypowerworld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
15 lines (15 loc) · 671 Bytes
/
setup.py
File metadata and controls
15 lines (15 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from distutils.core import setup
setup(
name = 'pypowerworld',
author = 'Jesse Boyd',
author_email = 'jessemarkboyd@gmail.com',
url = 'https://github.com/jessemarkboyd/pypowerworld',
download_url = 'https://github.com/jessemarkboyd/pypowerworld/tarball/0.2.7',
keywords = ['testing', 'logging', 'powerworld', 'powerflow', 'loadflow'],
version = '0.2.7',
description = 'Powerworld COM wrapper for Python',
long_description = open('README.txt').read(),
py_modules = ['pypowerworld'],
license = 'Creative Commons Attribution-Noncommercial-Share Alike license',
install_requires = ['pandas','numpy','pypiwin32','pywin32'],
)