-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 1.58 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
37
38
39
40
41
42
43
44
45
46
47
""" """
# pylint: disable=I0011,W0312,C0410
import os
from setuptools import setup, find_packages
REQUIREMENTS = ['exoedge']
def read(fname):
""" Primarily used to open README file. """
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# safely get the CALVER version number without having to import it
VERSION = {}
with open("exoedge_mqttsubscriber/__version__.py") as fp:
exec(fp.read(), VERSION) # pylint: disable=W0122
assert VERSION.get('__version__'), \
"Unable to parse version from exoedge_mqttsubscriber/__version__.py."
try:
README = read('README.rst')
except:
README = 'README Not Found'
setup(
name="exoedge_mqttsubscriber",
version=VERSION['__version__'],
author="Exosite LLC",
author_email="[email protected]",
description="An ExoEdge MQTT subscriber.",
license="Apache 2.0",
keywords="murano exosite exoedge exosense iot iiot client gateway mqtt broker",
url="https://github.com/exosite/lib_exoedge_mqtt_subscriber_python",
packages=find_packages(),
install_requires=REQUIREMENTS,
long_description=README,
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Operating System Kernels :: Linux",
"Topic :: Software Development :: Embedded Systems",
"License :: OSI Approved :: Apache Software License",
],
)