-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
27 lines (25 loc) · 897 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="emitter-io",
version="2.3.0",
author="Florimond Husquinet",
author_email="[email protected]",
description="A Python library to interact with the Emitter API.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://emitter.io",
packages=["emitter"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP",
"License :: OSI Approved :: Eclipse Public License 1.0 (EPL-1.0)",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3"
],
keywords="emitter mqtt realtime cloud service",
install_requires=["paho-mqtt"]
)