forked from RenierM26/pyHyypApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 794 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='pyhyypapi',
version="0.0.0.8",
license='Apache Software License 2.0',
author='Renier Moorcroft',
author_email='[email protected]',
description='IDS Hyyp/ADT Secure Home API',
long_description="API for accessing IDS Hyyp. This is used by ADT Home Connect and possibly others. Please view readme on github",
url='https://github.com/RenierM26/pyHyypApi/',
packages=setuptools.find_packages(),
setup_requires=[
'requests',
'setuptools'
],
install_requires=[
'requests',
'pandas',
'oscrypto',
'protobuf',
'http-ece',
'appdirs'
],
python_requires = '>=3.6'
)