1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
"""Installer for conn-check
"""
import os
cwd = os.path.dirname(__file__)
__version__ = open(os.path.join(cwd, 'conn_check/version.txt'),
'r').read().strip()
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='conn-check',
description='Utility/library for checking connectivity between services',
long_description=open('README.rst').read(),
version=__version__,
author='James Westby, Wes Mason',
author_email='james.westby@canonical.com, wesley.mason@canonical.com',
url='https://launchpad.net/conn-check',
packages=find_packages(exclude=['ez_setup']),
install_requires=open('requirements.txt').readlines(),
package_data={'conn_check': ['version.txt', 'amqp0-8.xml']},
include_package_data=True,
entry_points={
'console_scripts': [
'conn-check = conn_check:run',
],
},
license='GPL3',
classifiers=[
"Topic :: System :: Networking"
"Development Status :: 4 - Beta"
"Programming Language :: Python",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
)
|