-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 948 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
30
31
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as fp:
long_description = fp.read()
setup(
name='pyhap-maxcube',
description='HAP-python Accessories for e-Q3 MAX! devices.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Ivan Kalchev',
version='0.5',
url='https://github.com/ikalchev/pyhap-maxcube',
classifiers=[
'Development Status :: 5 - Beta',
'Programming Language :: Python :: 3',
'Operating System :: Linux',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
],
license='Apache-2.0',
packages=[
'pyhap.accessories.maxcube',
],
install_requires=[
'HAP-python >= 2.0.0',
'maxcube-api >= 0.1.0',
],
)