diff options
| author | jason | 2017-01-25 14:29:04 -0700 |
|---|---|---|
| committer | jason | 2017-01-25 14:29:04 -0700 |
| commit | cc9735e51a440303d5560e102f53fb3869219f7d (patch) | |
| tree | 9c65f6b3279db440e23c0b836dbd0df388f1cfe7 /setup.py | |
| parent | 0a66990263b1c62c28481fb0fe84388a5778ded5 (diff) | |
| parent | 83aadff2b913efb03baac914775c6f26ba90aab7 (diff) | |
| download | eventmq-cc9735e51a440303d5560e102f53fb3869219f7d.tar.gz eventmq-cc9735e51a440303d5560e102f53fb3869219f7d.zip | |
Merge branch 'master' of github.com:enderlabs/eventmq
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 17 |
1 files changed, 15 insertions, 2 deletions
| @@ -3,7 +3,7 @@ EventMQ setup.py file for distribution | |||
| 3 | 3 | ||
| 4 | """ | 4 | """ |
| 5 | 5 | ||
| 6 | from setuptools import setup, find_packages | 6 | from setuptools import find_packages, setup |
| 7 | 7 | ||
| 8 | setup( | 8 | setup( |
| 9 | name='eventmq', | 9 | name='eventmq', |
| @@ -18,6 +18,19 @@ setup( | |||
| 18 | 'future==0.15.2', | 18 | 'future==0.15.2', |
| 19 | 'psutil==5.0.0', | 19 | 'psutil==5.0.0', |
| 20 | 'python-dateutil>=2.1,<3.0.0'], | 20 | 'python-dateutil>=2.1,<3.0.0'], |
| 21 | extras_require={ | ||
| 22 | 'docs': ['Sphinx==1.5.2', ], | ||
| 23 | 'testing': [ | ||
| 24 | 'flake8==3.2.1', | ||
| 25 | 'flake8-import-order==0.11', | ||
| 26 | 'flake8-print==2.0.2', | ||
| 27 | 'nose', | ||
| 28 | 'coverage==4.0.3', | ||
| 29 | 'testfixtures==4.7.0', | ||
| 30 | 'freezegun==0.3.7', | ||
| 31 | 'tl.testing==0.5', | ||
| 32 | 'mock==1.3.0'], | ||
| 33 | }, | ||
| 21 | author='EventMQ Contributors', | 34 | author='EventMQ Contributors', |
| 22 | url='https://github.com/enderlabs/eventmq/', | 35 | url='https://github.com/enderlabs/eventmq/', |
| 23 | 36 | ||
| @@ -34,7 +47,7 @@ setup( | |||
| 34 | 'Topic :: System :: Distributed Computing', | 47 | 'Topic :: System :: Distributed Computing', |
| 35 | 48 | ||
| 36 | # Pick your license as you wish (should match "license" above) | 49 | # Pick your license as you wish (should match "license" above) |
| 37 | 'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)', | 50 | 'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)', # noqa |
| 38 | 'Operating System :: OS Independent', | 51 | 'Operating System :: OS Independent', |
| 39 | # Specify the Python versions you support here. In particular, ensure | 52 | # Specify the Python versions you support here. In particular, ensure |
| 40 | # that you indicate whether you support Python 2, Python 3 or both. | 53 | # that you indicate whether you support Python 2, Python 3 or both. |