-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
35 lines (29 loc) · 1.25 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
from os.path import abspath, dirname, join
here = dirname(abspath(__file__))
# Get version
exec(compile(open(join(here, 'src', 'MQTTLibrary', 'version.py'), "rb").read(), join(here, 'src', 'MQTTLibrary', 'version.py'), 'exec'))
# Get the long description
with open(join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name = 'robotframework-mqttlibrary',
version = VERSION,
description = 'MQTT Keyword Library Robot Framework',
long_description = long_description,
url = 'https://github.com/randomsync/robotframework-mqttlibrary',
author = 'Gaurav Gupta',
author_email = '[email protected]',
license = 'Apache License 2.0',
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Testing',
],
keywords = 'robotframework testing testautomation mqtt',
package_dir = {'': 'src'},
packages = ['MQTTLibrary'],
install_requires = ['robotframework', 'paho-mqtt'],
)