~ubuntuone-hackers/conn-check/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Tarmac
  • Author(s): Wes Mason
  • Date: 2014-10-29 16:20:19 UTC
  • mfrom: (79.1.10 mongodb)
  • Revision ID: tarmac-20141029162019-g2wcrsq3s5gk32g6
[r=james-w] Add a MongoDB check type

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    packages=find_packages(exclude=['ez_setup']),
34
34
    install_requires=get_requirements(),
35
35
    extras_require={
36
 
        'all': get_requirements('amqp', 'postgres', 'redis'),
 
36
        'all': get_requirements('amqp', 'postgres', 'redis', 'mongodb'),
37
37
        'amqp': get_requirements('amqp'),
38
38
        'postgres': get_requirements('postgres'),
39
39
        'redis': get_requirements('redis'),
 
40
        'mongodb': get_requirements('mongodb'),
40
41
    },
41
42
    package_data={'conn_check': ['version.txt', 'amqp0-8.xml']},
42
43
    include_package_data=True,