-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
75 lines (70 loc) · 1.56 KB
/
setup.cfg
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
72
73
74
75
[check-manifest]
ignore =
Dockerfile
entrypoint.sh
openssl.cnf
[metadata]
name = ansible_taskrunner
author = Engelbert Tejeda
author_email = etejeda@tecknicos.com
description = Ansible Task Runner
version = file: VERSION.txt
url = https://github.com/berttejeda/ansible-taskrunner.git
keywords =
ansible
playbook
wrapper
bash
python
click
task-runner
subprocess
yaml
cli
options
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.10
long_description = file: README.md
long_description_content_type = text/markdown
license_files =
LICENSE.txt
[options]
include_package_data = true
python_requires = >= 2.7
setup_requires =
setuptools >= 63.4.1
pip >= 22.1.2
wheel >= 0.37.1
packages = find:
zip_safe: False
scripts =
# somescript.py
install_requires =
btconfig>=4.4.0,<5.0.0
click>=8.1.3,<9.0.0
colorama==0.4.3
coloredlogs>=15.0.0,<16.0.0
PyYAML>=6.0,<7.0
paramiko==2.10.1; sys_platform == 'win32' or sys_platform == 'cygwin'
[options.extras_require]
tests =
pytest
pytest-cov
coveralls
flake8
mypy
[options.entry_points]
console_scripts =
tasks=ansible_taskrunner.cli:cli
[options.data_files]