-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (39 loc) · 1.21 KB
/
setup.py
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
from setuptools import setup, find_packages
install_requires = [
'contrail-api-cli',
'kombu',
'kazoo',
]
test_requires = []
setup(
name='contrail-healer',
version='0.1',
description="contrail-api-cli command to run live checks and fixes",
long_description=open('README.md').read(),
author="Jean-Philippe Braun",
author_email="[email protected]",
maintainer="Jean-Philippe Braun",
maintainer_email="[email protected]",
url="http://www.github.com/cloudwatt/contrail-healer",
packages=find_packages(),
install_requires=install_requires,
scripts=[],
license="MIT",
entry_points={
'contrail_api_cli.command': [
'heal = contrail_healer.heal:Heal',
],
'contrail_api_cli.healer': [
'fip-healer = contrail_healer.healers.fip:FIPHealer',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: User Interfaces',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
keywords='contrail api cli',
test_suite='contrail_healer.tests'
)