-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
82 lines (73 loc) · 1.47 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = [
"setuptools>=40.8.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "subprocessed"
version = "0.0"
authors = [
{name="Yohann Pipeau", email="[email protected]"},
]
description = "Execute a function in a Python subprocess instead of using the Python main process."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
]
dependencies = []
[project.optional-dependencies]
test = [
"pytest>=6",
"coverage>=5.3",
"pytest-cov",
"pytest-profiling",
]
format = [
"isort",
"black==23.*",
]
type = [
"pytest>=6",
"mypy",
]
lint = [
"pytest>=6",
"pylint>=2",
"pydocstyle>=2",
]
build = [
"build",
]
doc = [
"sphinx",
"sphinx-mdinclude",
]
dev = ["tox>=4", "subprocessed[test,format,type,lint,build,doc]"]
[project.urls]
"Homepage" = "https://github.com/gorgh/subprocessed"
"Bug Tracker" = "https://github.com/gorgh/subprocessed/issues"
[tool.isort]
line_length = 100
[tool.black]
line_length = 100
[tool.pylint]
max-line-length = 100
[tool.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--verbose --profile --cov --cov-config=pyproject.toml --cov-report=term --cov-report=html"
testpaths = [
"tests",
]
[tool.coverage.run]
source_pkgs = [
"subprocessed",
]
concurrency = [
"multiprocessing",
]