-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 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
35
from setuptools import setup, find_packages
import sys, os
version = '0.1'
def readme():
with open('README.md') as f:
return f.read()
setup(name='xiaomi_mqtt',
version=version,
description="Xiaomi Mi Home Python MQTT brigde",
long_description=readme(),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: System :: Hardware"
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='xiaomi udp mqtt iot mi home aqara',
author='Yury Skaletskiy',
author_email='[email protected]',
url='https://github.com/yuryskaletskiy/xiaomi_mqtt_python',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
scripts=['xiaomi_mqtt_gateway'],
zip_safe=False,
install_requires=['paho-mqtt'],
entry_points="""
# -*- Entry points: -*-
""",
)