forked from basnijholt/miflora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.14 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
"""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-mqtt',
version='0.1',
description='Simple MQTT bridge to publish data from Mi Flora sensor',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/yolkhovyy/miflora',
author='Yuriy Olkhovyy',
author_email='y.olkhovyy@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 1 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: System :: Hardware :: Hardware Drivers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(),
keywords='plant sensor bluetooth low-energy ble mqtt',
zip_safe=False,
install_requires=['getmac', 'paho-mqtt'],
include_package_data=True,
)