~cjwatson/rabbitfixture/rabbitmq-server-3.8.10

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Colin Watson
  • Date: 2015-04-24 13:02:13 UTC
  • mfrom: (33.1.1 work-around-stop-hang)
  • Revision ID: cjwatson@canonical.com-20150424130213-h5u5tdnydt4bzljz
[r=wgrant] Apply a timeout to all rabbitmqctl calls to work around occasional hangs on stop.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
"""Distutils installer for rabbitfixture."""
3
3
 
 
4
import sys
 
5
 
4
6
from setuptools import setup, find_packages
5
7
 
6
8
 
 
9
install_requires = [
 
10
    'amqplib >= 0.6.1',
 
11
    'fixtures >= 0.3.6',
 
12
    'setuptools',
 
13
    'testtools >= 0.9.12',
 
14
    ]
 
15
if sys.version_info[0] < 3:
 
16
    install_requires.append('subprocess32')
 
17
 
7
18
setup(
8
19
    name='rabbitfixture',
9
20
    version="0.3.5",
12
23
    include_package_data=True,
13
24
    zip_safe=False,
14
25
    description='Magic.',
15
 
    install_requires=[
16
 
        'amqplib >= 0.6.1',
17
 
        'fixtures >= 0.3.6',
18
 
        'setuptools',
19
 
        'testtools >= 0.9.12',
20
 
        ])
 
26
    install_requires=install_requires)