-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
27 lines (26 loc) · 1.01 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
"""Python package description."""
from setuptools import setup, find_packages
setup(
name='mitemp_bt',
version='0.0.5',
description='Library to read data from Mi Temperature and Humidity Sensor (V2) using Bluetooth LE with LCD display',
url='https://github.com/ratcashdev/mitemp',
author='ratcashdev',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: System :: Hardware :: Hardware Drivers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.9'
],
packages=find_packages(exclude=["test.*", "test"]),
install_requires=['btlewrap>=0.0.8'],
keywords='temperature and humidity sensor bluetooth low-energy ble',
zip_safe=False,
extras_require={'testing': ['pytest']}
)