aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--setup.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/setup.py b/setup.py
index f80264e..4c9f84b 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,3 @@
1"""
2EventMQ setup.py file for distribution
3
4"""
5import ast 1import ast
6 2
7from setuptools import find_packages, setup 3from setuptools import find_packages, setup
@@ -53,15 +49,14 @@ setup(
53 'Intended Audience :: Developers', 49 'Intended Audience :: Developers',
54 'Topic :: System :: Distributed Computing', 50 'Topic :: System :: Distributed Computing',
55 51
56 # Pick your license as you wish (should match "license" above)
57 'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)', # noqa 52 'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)', # noqa
58 'Operating System :: OS Independent', 53 'Operating System :: OS Independent',
59 # Specify the Python versions you support here. In particular, ensure 54
60 # that you indicate whether you support Python 2, Python 3 or both.
61 'Programming Language :: Python :: 2.7', 55 'Programming Language :: Python :: 2.7',
62 'Programming Language :: Python :: 3.5', 56 'Programming Language :: Python :: 3.5',
63 'Programming Language :: Python :: 3.6', 57 'Programming Language :: Python :: 3.6',
64 'Programming Language :: Python :: 3.7', 58 'Programming Language :: Python :: 3.7',
59 'Programming Language :: Python :: 3.8',
65 ], 60 ],
66 scripts=[ 61 scripts=[
67 'bin/emq-cli', 62 'bin/emq-cli',