-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 979 Bytes
/
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
from __future__ import print_function
try:
from setuptools import setup
except ImportError:
import sys
print("Please install the `setuptools` package in order to install this library", file=sys.stderr)
raise
setup(
name='mqttrpc',
version='1.0',
author='Max',
author_email='[email protected]',
packages=('mqttrpc',),
license='BSD',
keywords='mqtt rpc',
url='http://github.com/litnimax/python-mqttrpc',
description='''A RPC interface over MQTT''',
long_description=open('README.md').read(),
install_requires=['tinyrpc', 'hbmqtt', 'aiohttp', 'async-timeout'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
scripts=['mqttrpc/http_bridge.py'],
)