forked from andrey1908/subprocess-tee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
103 lines (87 loc) · 2.76 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[metadata]
name = subprocess-tee
url = https://github.com/pycontribs/subprocess-tee
project_urls =
Bug Tracker = https://github.com/pycontribs/subprocess-tee/issues
Release Management = https://github.com/pycontribs/subprocess-tee/releases
CI = https://github.com/pycontribs/subprocess-tee/actions
Code of Conduct = https://docs.ansible.com/ansible/latest/community/code_of_conduct.html
Documentation = https://subprocess-tee.readthedocs.io
Discussions = https://github.com/pycontribs/subprocess-tee/discussions
Source Code = https://github.com/pycontribs/subprocess-tee
description = subprocess-tee
long_description = file: README.md
long_description_content_type = text/markdown
author = Sorin Sbarnea
author_email = [email protected]
maintainer = Sorin Sbarnea
maintainer_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
Operating System :: OS Independent
License :: OSI Approved :: MIT License
Programming Language :: Python
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: System :: Systems Administration
Topic :: Utilities
keywords =
subprocess
asyncio
[options]
use_scm_version = True
python_requires = >=3.6
package_dir =
= src
packages = find:
include_package_data = True
zip_safe = False
# These are required during `setup.py` run:
setup_requires =
setuptools_scm >= 1.15.0
setuptools_scm_git_archive >= 1.0
# These are required in actual runtime:
; install_requires =
[options.extras_require]
test =
enrich>=1.2.6
mock>=4.0.3
molecule>=3.4.0 # ansible is needed but no direct imports are made
pytest-cov>=2.12.1
pytest-plus>=0.2
pytest-xdist>=2.3.0
pytest>=6.2.5
[options.packages.find]
where = src
[options.package_data]
subprocess_tee =
*.typed
*.pyi
[tool:pytest]
addopts = --doctest-modules --durations 10 --durations-min=3 --color=yes
doctest_optionflags = ALLOW_UNICODE ELLIPSIS
norecursedirs = dist doc build .tox .eggs
testpaths = src
filterwarnings =
# treat warnings as errors unless we add them below
error
# ignore::UserWarning
[flake8]
# do not add excludes for files in repo
exclude = .venv/,.tox/,dist/,build/,.eggs/
format = pylint
# E203: https://github.com/python/black/issues/315
ignore = E741,W503,W504,H,E501,E203,D
# 88 is official black default:
max-line-length = 88