-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
43 lines (39 loc) · 1.37 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
#!/usr/bin/env python
# coding: utf8
from setuptools import setup, find_packages
name='owlet_api'
version='0.1.0'
setup(name = name,
version = version,
description = 'Unofficial Python API for the Owlet Smart Baby Monitor',
long_description = 'Unofficial Python API for the Owlet Smart Baby Monitor',
author = 'Wolf-Bastian Pöttner',
author_email = 'bastian+owlet@poettner.de',
packages = ['owlet_api'],
url = 'https://github.com/BastianPoe/owlet_api/',
license = 'MIT',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords = 'owlet baby monitor api ayla',
install_requires = [
'requests',
'python-dateutil',
'argparse'
],
entry_points = {
'console_scripts': [
'owlet=owlet_api.cli:cli',
]
},
test_suite = 'tests',
include_package_data = True,
)