~ubuntuone-hackers/conn-check/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Wes Mason
  • Date: 2014-07-24 17:08:33 UTC
  • mfrom: (8.1.3 amqp)
  • Revision ID: wesley.mason@canonical.com-20140724170833-klusck7nhqllos3l
Fix the AMQP check

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
setup(
17
17
    name='conn-check',
18
 
    packages=['conn_check'],
19
18
    description='Utility/library for checking connectivity between services',
20
19
    long_description=open('README.rst').read(),
21
20
    version=__version__,
24
23
    url='https://launchpad.net/conn-check',
25
24
    packages=find_packages(exclude=['ez_setup']),
26
25
    install_requires=open('requirements.txt').readlines(),
27
 
    package_data={'conn_check': ['version.txt']},
 
26
    package_data={'conn_check': ['version.txt', 'amqp0-8.xml']},
28
27
    include_package_data=True,
 
28
    entry_points={
 
29
        'console_scripts': [
 
30
            'conn-check = conn_check:run',
 
31
        ],
 
32
    },
29
33
    license='GPL3',
30
34
    classifiers=[
31
35
        "Topic :: System :: Networking"