forked from nugget/python-anthemav
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1022 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (32 loc) · 1022 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
33
34
35
#!/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.1.9',
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', ]
}
)