forked from JeffLIrion/python-androidtv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 637 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(
name='androidtv',
version='0.0.16',
description='Communicate with an Android TV or Fire TV device via ADB over a network.',
url='https://github.com/JeffLIrion/python-androidtv/',
license='MIT',
author='Jeff Irion',
author_email='jefflirion@users.noreply.github.com',
packages=['androidtv'],
install_requires=['rsa', 'adb-homeassistant', 'pure-python-adb-homeassistant'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
test_suite='tests'
)