-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
71 lines (67 loc) · 2.14 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
65
66
67
68
69
70
71
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 = "3.0.0"
install_requires = [
'ansible;python_version>="3.10"',
'backports.lzma',
'PyYAML',
'jinja2',
'setuptools',
'ploy>=2.0.0',
'ploy_ansible>=2.0.0',
'ploy_ezjail>=2.0.0',
'ploy_fabric>=2.0.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='tom@tomster.org',
maintainer='Florian Schulze',
maintainer_email='mail@florian-schulze.net',
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 :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Systems Administration',
],
license="BSD 3-Clause License",
zip_safe=False,
packages=['bsdploy'],
install_requires=install_requires,
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*',
extras_require={
'development': [
'Sphinx',
'repoze.sphinx.autointerface',
'coverage',
'jarn.mkrelease',
'ploy_virtualbox>=2dev',
'pytest >= 2.4.2',
'pytest-flake8',
'tox',
'mock',
],
},
entry_points="""
[console_scripts]
ploy-download = bsdploy.download:run
[ansible_paths]
bsdploy = bsdploy:ansible_paths
[ploy.plugins]
bsdploy = bsdploy:plugin
""")