diff options
| author | jason | 2020-06-10 10:42:02 -0600 |
|---|---|---|
| committer | jason | 2020-06-10 10:42:02 -0600 |
| commit | 2ada4a6b091307988e20aa548948391a9fb09363 (patch) | |
| tree | 48a1a29bf9f9b4d23cda626fdffbdd334000952a | |
| parent | 0fcf6b0b4d79f3d20770bd0097ccc2a2fa0eddf4 (diff) | |
| download | eventmq-master.tar.gz eventmq-master.zip | |
Diffstat (limited to '')
| -rw-r--r-- | eventmq/__init__.py | 2 | ||||
| -rw-r--r-- | setup.py | 9 |
2 files changed, 3 insertions, 8 deletions
diff --git a/eventmq/__init__.py b/eventmq/__init__.py index a63d96a..4154cb6 100644 --- a/eventmq/__init__.py +++ b/eventmq/__init__.py | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | __author__ = 'EventMQ Contributors' | 1 | __author__ = 'EventMQ Contributors' |
| 2 | __version__ = '0.3.13-rc1' | 2 | __version__ = '0.3.13' |
| 3 | 3 | ||
| 4 | PROTOCOL_VERSION = 'eMQP/1.0' | 4 | PROTOCOL_VERSION = 'eMQP/1.0' |
| 5 | 5 | ||
| @@ -1,7 +1,3 @@ | |||
| 1 | """ | ||
| 2 | EventMQ setup.py file for distribution | ||
| 3 | |||
| 4 | """ | ||
| 5 | import ast | 1 | import ast |
| 6 | 2 | ||
| 7 | from setuptools import find_packages, setup | 3 | from 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', |