forked from basnijholt/miflora
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (32 loc) · 1.12 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
28
29
30
31
32
33
34
35
36
"""Python package description."""
from setuptools import setup, find_packages
def readme():
"""Load the readme file."""
with open('README.md', 'r') as readme_file:
return readme_file.read()
setup(
name='miflora',
version='0.4.1',
description='Library to read data from Mi Flora sensor',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/open-homeautomation/miflora',
author='Daniel Matuschek',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'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,
install_requires=['btlewrap==0.0.2'],
extras_require={'testing': ['pytest']},
include_package_data=True,
)