-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 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
27
28
29
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'Asynchronous python wrapper to Bose SoundTouch API',
'author': 'Wagner Sartori Junior',
'url': 'https://github.com/trunet/aiobosest',
'download_url': 'https://github.com/trunet/aiobosest',
'author_email': '[email protected]',
'version': '0.0.4',
'install_requires': ['aiohttp>=1.1.4', 'lxml>=3.6.4', 'zeroconf>=0.17.6'],
'tests_require': ['pycodestyle', 'pytest-asyncio', 'pytest'],
'packages': ['aiobosest', 'aiobosest.helpers'],
'license': 'GPLv3',
'scripts': [],
'name': 'aiobosest',
'classifiers': [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.5',
'Topic :: Home Automation',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
}
setup(**config)