-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
63 lines (54 loc) · 1.64 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "command-executor"
version = "0.1.0"
description = "command_executor provides some Python classes to make it easier to execute processes / commands and handling errors and output."
authors = [
"Stephan Jaekel <steph@rdev.info>",
]
license = "MIT"
readme = "README.rst"
homepage = 'https://github.com/stephrdev/python-command-executor'
repository = 'https://github.com/stephrdev/python-command-executor'
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
packages = [{ include = "command_executor" }]
include = ["LICENSE.rst"]
[tool.poetry.dependencies]
python = ">=3.8,<4"
Sphinx = {version = ">=3.5", optional = true}
[tool.poetry.dev-dependencies]
pytest = ">=6.2"
pytest-cov = ">=2.11"
pytest-flake8 = ">=1.0"
pytest-isort = ">=2.0"
pytest-black = ">=0.3"
coverage = {version = ">=5.5", extras = ["toml"]}
[tool.poetry.extras]
docs = ["Sphinx"]
[build-system]
requires = ["poetry>=1.1"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
addopts = "-v --tb=short"
testpaths = ["command_executor", "tests"]
flake8-max-line-length = 96
flake8-ignore = ["E203", "E266", "E501", "W503"]
flake8-max-complexity = 18
[tool.black]
line-length = 96
skip-string-normalization = true
skip-numeric-underscore-normalization = true
include = "\\.pyi?$"
exclude = "/(\\.git|\\.tox|build|dist)/"
[tool.coverage.run]
branch = true
source = ["command_executor"]
omit = ["*/__init__.py"]
[tool.coverage.report]
exclude_lines = ["raise NotImplementedError"]