-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
48 lines (43 loc) · 1.4 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
"""PySnoo setup script."""
from setuptools import setup
_VERSION = '0.1.2'
def readme():
"""Pipe README.rst"""
with open('README.md') as desc:
return desc.read()
setup(
name='pysnoo',
packages=['pysnoo'],
version=_VERSION,
description='A Python library and CLI to communicate with'
' the Snoo Smart Baby Sleeper and Bassinet from Happiest Baby',
long_description=readme(),
long_description_content_type='text/markdown',
author='Martin Riedel',
author_email='[email protected]',
url='https://github.com/rado0x54/pysnoo',
license='MIT',
python_requires='>=3.7, <4',
include_package_data=True,
install_requires=['oauthlib', 'aiohttp', 'pubnub>=5.0.0'],
test_suite='tests',
scripts=['scripts/snoo'],
keywords=[
'baby',
'snoo',
'home automation',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)