-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (32 loc) · 898 Bytes
/
pyproject.toml
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
[project]
name = "tee-subprocess"
version = "1.2.0"
description = "A subprocess replacement with tee support for both synchronous and asynchronous contexts."
authors = [
{name = "Elias Gabriel",email = "me@eliasfgabriel.com"},
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
dependencies = []
[project.urls]
documentation = "https://github.com/thearchitector/tee-subprocess"
repository = "https://github.com/thearchitector/tee-subprocess"
changelog = "https://github.com/thearchitector/tee-subprocess/blob/main/CHANGELOG.md"
[tool.pdm.dev-dependencies]
dev = [
"pytest>=7.4.3",
"pre-commit>=3.5.0",
]
[tool.pytest.ini_options]
addopts = "-vv"
testpaths = ["tests"]
[tool.mypy]
strict = true
[tool.pyright]
ignore = [ "tests" ]
[tool.ruff.lint]
extend-select = ["I", "B", "ASYNC"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"