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
|
[build-system]
requires = [
"wheel",
"setuptools>77",
]
build-backend = "setuptools.build_meta"
[project]
name = "stdio-mgr"
description = "Context manager for mocking/wrapping stdin/stdout/stderr"
authors = [
{ name = "Brian Skinn", email = "brian.skinn@gmail.com" },
]
license = "MIT"
license-files = [
"LICENSE.txt",
]
classifiers = [
"Natural Language :: English",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Mocking",
"Topic :: Software Development :: User Interfaces",
"Development Status :: 5 - Production/Stable",
]
keywords = [
"stdin",
"stdout",
"stderr",
"mock",
]
requires-python = ">=3.10"
dependencies = [
"attrs>=17.1",
]
dynamic = [
"version",
"readme",
]
[project.urls]
Homepage = "https://github.com/bskinn/stdio-mgr"
Changelog = "https://github.com/bskinn/stdio-mgr/blob/main/CHANGELOG.md"
Donate = "https://github.com/sponsors/bskinn"
[tool.setuptools]
platforms = [
"any",
]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "stdio_mgr.version.__version__"}
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = [
"src",
]
namespaces = false
[tool.black]
line-length = 88
include = '''
(
^/tests/
| ^/src/stdio_mgr/
| ^/setup[.]py
| ^/conftest[.]py
)
'''
exclude = '''
(
__pycache__
)
'''
|