forked from fschulze/bsdploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (60 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import setup
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
version = "2.3.0"
install_requires = [
'PyYAML',
'jinja2',
'setuptools',
'ploy>=1.5.0',
'ploy_ansible>=1.3.0',
'ploy_ezjail>=1.2.0',
'ploy_fabric>=1.1.0',
]
setup(
name="bsdploy",
version=version,
description="A tool to remotely provision, configure and maintain FreeBSD jails",
long_description=README + '\n\n\nChanges\n=======\n\n' + CHANGES,
author='Tom Lazar',
author_email='[email protected]',
url='http://github.com/ployground/bsdploy',
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Systems Administration',
],
license="BSD 3-Clause License",
zip_safe=False,
packages=['bsdploy'],
install_requires=install_requires,
extras_require={
'development': [
'Sphinx',
'repoze.sphinx.autointerface',
'coverage',
'jarn.mkrelease',
'ploy_virtualbox>=1.1.0',
'pytest >= 2.4.2',
'pytest-flakes',
'pytest-pep8',
'tox',
'mock',
],
},
entry_points="""
[console_scripts]
ploy-download = bsdploy.download:run
[ansible_paths]
bsdploy = bsdploy:ansible_paths
[ploy.plugins]
bsdploy = bsdploy:plugin
""")