forked from s-celles/APC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 791 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 791 Bytes
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
from setuptools import setup
import sys
sys.path.insert(0, 'apc') # noqa
import release
setup(
name=release.name,
version=release.__version__,
author=release.__author__,
author_email=release.__email__,
description=release.__description__,
url='https://github.com/scls19fr/APC/',
download_url='https://github.com/scls19fr/APC/archive/master.zip',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='apc power distribution unit pdu',
packages=[
'apc'
],
install_requires=['pexpect'],
entry_points={
'console_scripts': [
'apc=apc.cli_apc:main'
],
},
)