-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (46 loc) · 1.34 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
43
44
45
46
47
48
49
50
"""
vdt.deploy
============
vdt.deployment provides a command line tool for deploying VM's in Cloudstack
with a puppet role. The puppet role defines the installation and configuration
of the server. For example a server with the role *lvs* will be installed and
configured as an lvs load balancer.
"""
from setuptools import setup
from setuptools import find_packages
version = '1.1.11'
setup(
name='vdt.deploy',
version=version,
description="Vdt Deployment Tool",
long_description=__doc__,
classifiers=[],
# Get strings from
#http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Martijn Jacobs',
author_email='[email protected]',
url='https://github.com/devopsconsulting/vdt.deploy',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['vdt'],
include_package_data=True,
zip_safe=False,
install_requires=[
'distribute',
'watchdog',
'python-daemon',
'argh>=0.8.1',
'pathtools',
'straight.plugin',
'argparse',
'mutexlock',
# -*- Extra requirements: -*-
],
extras_require={
'fabric': ['fabric'],
},
entry_points={'console_scripts': [
'vdt-deploy=vdt.deploy.tool:main',
'vdt-puppetbot=vdt.deploy.puppetbot:main']},
)