forked from jaapz/cast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 794 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
from setuptools import setup
setup(
name='cast',
version='0.1.1',
license='MIT',
url='https://github.com/jaapz/cast',
author='Jaap Broekhuizen',
author_email='[email protected]',
description='Command line utility to control your Google Chromecast.',
py_modules=['cast'],
zip_safe=False,
include_package_data=True,
platforms='any',
# PyChromecast is not yet pushed to PyPI so for now this next option will
# not work.
#install_requires=['pychromecast'],
install_requires=['docopt'],
entry_points={
'console_scripts': [
'cast = cast:main'
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Operating System :: POSIX'
]
)