-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
56 lines (53 loc) · 1.85 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
from __future__ import print_function
import sys
try:
from setuptools import setup
except ImportError:
print("Paternoster needs setuptools.", file=sys.stderr)
print("Please install it using your package-manager or pip.", file=sys.stderr)
sys.exit(1)
setup(name='paternoster',
version='3.3.0',
description='Paternoster provides allows to run ansible playbooks like ordinary python or bash scripts.',
author='uberspace.de',
author_email='[email protected]',
url='https://github.com/uberspace/paternoster',
packages=[
'paternoster',
'paternoster.runners',
'paternoster.types',
],
entry_points={
'console_scripts': ['paternoster=paternoster.shebang:main'],
},
install_requires=[
'tldextract>=2.0.1',
'six',
],
extras_require={
'ansible21': ['ansible==2.1.*'],
'ansible22': ['ansible==2.2.*'],
'ansible23': ['ansible==2.3.*'],
'ansible24': ['ansible==2.4.*'],
'ansible25': ['ansible==2.5.*'],
'ansible26': ['ansible==2.6.*'],
'ansible27': ['ansible==2.7.*'],
'ansible28': ['ansible==2.8.*'],
'ansible29': ['ansible==2.9.*'],
'ansible210': ['ansible==2.10.*'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Topic :: System :: Systems Administration',
'Topic :: Security',
'Topic :: Utilities',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
zip_safe=True,
)