forked from marcotini/miflora
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 803 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 803 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 setup, find_packages
setup(name='miflora',
version='0.1.16',
description='Library to read data from Mi Flora sensor',
url='https://github.com/open-homeautomation/miflora',
author='Daniel Matuschek',
author_email='daniel@matuschek.net',
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'
],
packages=find_packages(),
keywords='plant sensor bluetooth low-energy ble',
zip_safe=False)