diff options
| author | jason | 2019-10-25 10:55:55 -0600 |
|---|---|---|
| committer | GitHub | 2019-10-25 10:55:55 -0600 |
| commit | 04702253c51579c883c93bc72e4f94c8f258f434 (patch) | |
| tree | cf19d85fbcb358c410cafb7e1fbbff5592a15ec4 /setup.py | |
| parent | 9cb7b0e7d44b8dfe5eaf2d7df133a67e072e9481 (diff) | |
| parent | 06c1993646618d750e27aa3b7f9d80c4226e1924 (diff) | |
| download | eventmq-04702253c51579c883c93bc72e4f94c8f258f434.tar.gz eventmq-04702253c51579c883c93bc72e4f94c8f258f434.zip | |
Merge pull request #71 from tpavelchak/feature/add-python-3-7-support0.3.11
Add Python 3.7 support
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
| @@ -19,7 +19,7 @@ setup( | |||
| 19 | description='EventMQ job execution and messaging system based on ZeroMQ', | 19 | description='EventMQ job execution and messaging system based on ZeroMQ', |
| 20 | packages=find_packages(), | 20 | packages=find_packages(), |
| 21 | install_requires=[ | 21 | install_requires=[ |
| 22 | 'pyzmq==15.4.0', | 22 | 'pyzmq==18.1.0', |
| 23 | 'six==1.10.0', | 23 | 'six==1.10.0', |
| 24 | 'monotonic==0.4', | 24 | 'monotonic==0.4', |
| 25 | 'croniter==0.3.10', | 25 | 'croniter==0.3.10', |
| @@ -60,6 +60,8 @@ setup( | |||
| 60 | # that you indicate whether you support Python 2, Python 3 or both. | 60 | # that you indicate whether you support Python 2, Python 3 or both. |
| 61 | 'Programming Language :: Python :: 2.7', | 61 | 'Programming Language :: Python :: 2.7', |
| 62 | 'Programming Language :: Python :: 3.5', | 62 | 'Programming Language :: Python :: 3.5', |
| 63 | 'Programming Language :: Python :: 3.6', | ||
| 64 | 'Programming Language :: Python :: 3.7', | ||
| 63 | ], | 65 | ], |
| 64 | scripts=[ | 66 | scripts=[ |
| 65 | 'bin/emq-cli', | 67 | 'bin/emq-cli', |