diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 18 |
1 files changed, 8 insertions, 10 deletions
| @@ -18,20 +18,20 @@ setup( | |||
| 18 | version=version, | 18 | version=version, |
| 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=['pyzmq==15.4.0', | 21 | install_requires=[ |
| 22 | 'six==1.10.0', | 22 | 'pyzmq==15.4.0', |
| 23 | 'monotonic==0.4', | 23 | 'six==1.10.0', |
| 24 | 'croniter==0.3.10', | 24 | 'monotonic==0.4', |
| 25 | 'future==0.15.2', | 25 | 'croniter==0.3.10', |
| 26 | 'psutil==5.0.0', | 26 | 'future==0.15.2', |
| 27 | 'python-dateutil>=2.1,<3.0.0'], | 27 | 'psutil==5.0.0', |
| 28 | ], | ||
| 28 | extras_require={ | 29 | extras_require={ |
| 29 | 'docs': ['Sphinx==1.5.2', ], | 30 | 'docs': ['Sphinx==1.5.2', ], |
| 30 | 'testing': [ | 31 | 'testing': [ |
| 31 | 'flake8==3.2.1', | 32 | 'flake8==3.2.1', |
| 32 | 'flake8-import-order==0.11', | 33 | 'flake8-import-order==0.11', |
| 33 | 'flake8-print==2.0.2', | 34 | 'flake8-print==2.0.2', |
| 34 | 'nose', | ||
| 35 | 'coverage==4.0.3', | 35 | 'coverage==4.0.3', |
| 36 | 'testfixtures==4.7.0', | 36 | 'testfixtures==4.7.0', |
| 37 | 'freezegun==0.3.7', | 37 | 'freezegun==0.3.7', |
| @@ -58,9 +58,7 @@ setup( | |||
| 58 | 'Operating System :: OS Independent', | 58 | 'Operating System :: OS Independent', |
| 59 | # Specify the Python versions you support here. In particular, ensure | 59 | # Specify the Python versions you support here. In particular, ensure |
| 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.6', | ||
| 62 | 'Programming Language :: Python :: 2.7', | 61 | 'Programming Language :: Python :: 2.7', |
| 63 | 'Programming Language :: Python :: 3.4', | ||
| 64 | 'Programming Language :: Python :: 3.5', | 62 | 'Programming Language :: Python :: 3.5', |
| 65 | ], | 63 | ], |
| 66 | scripts=[ | 64 | scripts=[ |