-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 776 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 776 Bytes
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
from setuptools import setup
setup(
name='HAP-python-AM2302',
description='HAP-python AsyncAccessory for the AM2302/DHT22 sensor.',
author='Ivan Kalchev',
version='0.9',
url='https://github.com/ikalchev/HAP-python-AM2302',
classifiers=[
'Development Status :: 5 - Production/Stable',
'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.AM2302',
],
install_requires=[
'HAP-python',
'pigpio',
],
)