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
|
#!/usr/bin/env python
"""Setup for anthemav 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="anthemav",
version="1.4.2",
author="David McNett",
author_email="nugget@macnugget.org",
url="https://github.com/nugget/python-anthemav",
license="LICENSE",
packages=["anthemav"],
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,
zip_safe=True,
entry_points={
"console_scripts": [
"anthemav_monitor = anthemav.tools:monitor",
]
},
)
|