-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
26 lines (22 loc) · 1.01 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
import sys
from distutils.core import setup
if not sys.version_info[0] == 3:
sys.exit("[ERROR] Package syncrhrophasor is only available for Python 3.")
setup(name = 'synchrophasor',
packages = ['synchrophasor'],
version = '1.0.0-alpha',
description = 'Synchrophasor module represents implementation of IEEE C37.118.2 standard in Python.',
author = 'Stevan Sandi, Tomo Popovic, Bozo Krstajic',
author_email = '[email protected]',
license = "BSD-3",
url = 'https://github.com/iicsys/pypmu',
download_url = 'https://github.com/iicsys/pypmu/tarball/1.0.0-alpha',
keywords = ['synchrophasor', 'pypmu', 'pdc', 'pmu', 'power-systems', 'ieeec37118'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
],
)