-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 638 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages, setup
VERSION = '0.0.9'
setup(
name='lywsd02',
version=VERSION,
packages=find_packages(exclude=("tests",)),
url='https://github.com/h4/lywsd02',
license='MIT',
author='h4',
classifiers=[
'Programming Language :: Python :: 3.7',
],
install_requires=['bluepy==1.3.0'],
scripts=['scripts/lywsd02'],
author_email='mikhail.baranov@gmail.com',
description='Lywsd02 BLE sendor Library',
long_description_content_type='text/x-rst',
long_description='Library to read data from Mi Temperature and Humidity Sensor (E-Inc version with Clock)',
)