forked from nugget/python-anthemav
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (33 loc) · 1.03 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
#!/usr/bin/env python
"""Setup for py_eiscp module."""
from setuptools import setup
def readme():
"""Return README file as a string."""
with open("README.rst", "r") as f:
return f.read()
setup(
name="pyeiscp",
version="0.0.7",
author="Mathieu Pasquet",
author_email="[email protected]",
url="https://github.com/winterscar/python-eiscp",
license="LICENSE",
packages=["pyeiscp"],
scripts=[],
description="Python API for controlling Anthem Receivers",
long_description=readme(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
include_package_data=True,
install_requires=[
"netifaces",
],
zip_safe=True,
entry_points={"console_scripts": ["eiscp_monitor = pyeiscp.tools:monitor",]},
)