-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
58 lines (49 loc) · 1.82 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
import setuptools
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
HISTORY = open(os.path.join(here, 'HISTORY.rst')).read()
version = "2.1.0.dev0"
classifiers = [
'Environment :: Console',
'Intended Audience :: System Administrators',
'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',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Systems Administration']
install_requires = [
'execnet',
'importlib.metadata;python_version<"3.10"',
'packaging',
'ploy >= 2.0.0',
'ansible>=1.9,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*;python_version<"3.0"',
'ansible>=2.4;python_version>="3.0" and python_version<"3.10"',
'ansible-core;python_version>="3.10"',
'ansible-core>=2.13;python_version>="3.12"',
]
setuptools.setup(
version=version,
description="Plugin to integrate Ansible with ploy.",
long_description=README + "\n\n" + HISTORY,
name="ploy_ansible",
author='Florian Schulze',
author_email='florian.schulze@gmx.net',
license="GPLv3", # infected by code for ansible and playbook commands
url='http://github.com/ployground/ploy_ansible',
classifiers=classifiers,
include_package_data=True,
zip_safe=False,
packages=['ploy_ansible'],
install_requires=install_requires,
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*',
entry_points="""
[ansible_paths]
ploy_ansible = ploy_ansible:ansible_paths
[ploy.plugins]
ansible = ploy_ansible:plugin
""")