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
|
[build-system]
requires = [
# Needed for PEP 621 support
"setuptools >= 61.0",
"setuptools_scm[toml] >= 7.0.0",
]
build-backend = "setuptools.build_meta"
[project]
# https://peps.python.org/pep-0621/#readme
requires-python = ">=3.8"
dynamic = ["version"]
name = "subprocess-tee"
description = "subprocess-tee"
readme = "README.md"
authors = [
{"name"="Sorin Sbarnea", "email"="sorin.sbarnea@gmail.com"}
]
maintainers = [
{"name"="Sorin Sbarnea", "email"="sorin.sbarnea@gmail.com"}
]
license = {text = "MIT"}
classifiers = [
# https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
keywords = ["subprocess", "asyncio"]
[project.urls]
homepage = "https://github.com/pycontribs/subprocess-tee"
documentation = "https://subprocess-tee.readthedocs.io"
repository = "https://github.com/pycontribs/subprocess-tee"
changelog = "https://github.com/pycontribs/subprocess-tee/releases"
[project.optional-dependencies]
docs = [
"argparse-manpage",
"cairosvg",
"markdown-include",
"mkdocs",
"mkdocs-git-revision-date-localized-plugin",
"mkdocs-material",
"mkdocs-material-extensions",
"mkdocstrings",
"mkdocstrings-python",
"pillow",
"pymdown-extensions",
]
test =[
"enrich>=1.2.6",
"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",
]
[tool.isort]
profile = "black"
known_first_party = "subprocess_tee"
[tool.mypy]
python_version = 3.8
color_output = true
error_summary = true
disallow_any_generics = true
disallow_any_unimported = true
disallow_untyped_calls = true
disallow_untyped_defs = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
[tool.setuptools_scm]
local_scheme = "no-local-version"
|