-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (30 loc) · 856 Bytes
/
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
import os
import setuptools
VERSION = '0.3.8-beta.2'
DESCRIPTION = 'Sonos Command-Line Tools'
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
python_requires='>=3.0',
name='sonos-cli',
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
version=VERSION,
author='Bartlomiej Wilczynski',
author_email='[email protected]',
url='https://github.com/bwilczynski/sonos-cli',
packages=setuptools.find_packages(),
install_requires=[
'click',
'requests',
'requests_oauthlib',
'tabulate'
],
entry_points='''
[console_scripts]
sonos=sonos.cli:cli
''',
include_package_data=True,
)