forked from JeffLIrion/python-androidtv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 951 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
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
setup(
name='androidtv',
version='0.0.48',
description='Communicate with an Android TV or Fire TV device via ADB over a network.',
long_description=readme,
keywords=['adb', 'android', 'androidtv', 'firetv'],
url='https://github.com/JeffLIrion/python-androidtv/',
license='MIT',
author='Jeff Irion',
author_email='[email protected]',
packages=['androidtv', 'androidtv.adb_manager', 'androidtv.basetv', 'androidtv.androidtv', 'androidtv.firetv'],
install_requires=['adb-shell>=0.2.1', 'pure-python-adb>=0.3.0.dev0'],
extras_require={'async': ['aiofiles>=0.4.0']},
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
],
test_suite='tests'
)