forked from python-ring-doorbell/python-ring-doorbell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.36 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# coding=utf-8
"""Python Ring Door Bell setup script."""
from setuptools import setup
_VERSION = '0.6.2'
def readme():
with open('README.rst') as desc:
return desc.read()
setup(
name='ring_doorbell',
packages=['ring_doorbell'],
version=_VERSION,
description='A Python library to communicate with Ring' +
' Door Bell (https://ring.com/)',
long_description=readme(),
author='Marcelo Moreira de Mello',
author_email='tchello.mello@gmail.com',
url='https://github.com/tchellomello/python-ring-doorbell',
license='LGPLv3+',
include_package_data=True,
install_requires=[
"requests>=2.0.0",
"requests-oauthlib>=1.3.0,<2",
"oauthlib>=3.0.0,<4",
'pytz'
],
test_suite='tests',
keywords=[
'ring',
'door bell',
'home automation',
],
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',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)