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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# coding=utf-8
"""Python Arlo setup script."""
from setuptools import setup
def readme():
with open('README.md') as desc:
return desc.read()
setup(
name='pyaarlo',
version='0.8.0.15',
packages=['pyaarlo'],
python_requires='>=3.7',
install_requires=[
'requests',
'click',
'pycryptodomex',
'unidecode',
'cloudscraper>=1.2.71',
'paho-mqtt',
'cryptography',
'python-slugify'
],
author='Steve Herrell',
author_email='steve.herrell@gmail.com',
description='PyAarlo is a library that provides asynchronous access to Arlo security cameras.',
long_description=readme(),
long_description_content_type='text/markdown',
license='LGPLv3+',
keywords=[
'arlo',
'netgear',
'camera',
'home automation',
'python',
],
url='https://github.com/twrecked/pyaarlo.git',
project_urls={
"Bug Tracker": 'https://github.com/twrecked/pyaarlo/issues',
"Documentation": 'https://github.com/twrecked/pyaarlo/blob/master/README.md',
"Source Code": 'https://github.com/twrecked/pyaarlo',
},
classifiers=[
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules'
],
entry_points={
'console_scripts': [
'pyaarlo = pyaarlo.main:main_func',
],
},
test_suite='tests',
)
|