forked from aiiie/cram
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
130 lines (116 loc) · 2.8 KB
/
Copy pathpyproject.toml
File metadata and controls
130 lines (116 loc) · 2.8 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[build-system]
requires = [
"poetry>=1.0.0",
]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "prysk"
packages = [
{ include = "prysk" },
]
version = "0.20.0"
description = "Functional tests for command line applications"
readme = "README.rst"
license = "GNU GPLv2 or any later version"
authors = [
"Nicola Coretti <nico.coretti@gmail.com>",
"Brodie Rao <brodie@bitheap.org>",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Unix Shell",
"Topic :: Software Development :: Testing",
"Framework :: Pytest",
]
keywords = [
"test framework",
"snapshot testing",
"testing",
"cli",
"functional tests",
]
repository = "https://github.com/prysk/prysk"
homepage = "https://www.prysk.net/"
include = [
{ path = ".coveragerc", format = "sdist" },
{ path = "noxfile.py", format = "sdist" },
{ path = "poetry.lock", format = "sdist" },
{ path = "*.rst", format = "sdist" },
{ path = "*.txt", format = "sdist" },
{ path = "*.toml", format = "sdist" },
{ path = "docs/*", format = "sdist" },
{ path = "contrib/*", format = "sdist" },
{ path = "scripts/*", format = "sdist" },
{ path = "examples/*", format = "sdist" },
]
exclude = [
"contrib/PKGBUILD",
]
[tool.poetry.scripts]
prysk = "prysk:main"
[tool.poetry.dependencies]
python = ">=3.8,<4.0.0"
rich = "^13.3.1"
pytest-prysk = { version = "^0.2.0", optional = true }
[tool.poetry.extras]
pytest-plugin = ["pytest-prysk"]
[tool.poetry.dev-dependencies]
tomli = "^2.0.1"
tomli-w = "^1.0.0"
pytest = "^7.0.1"
sphinx-copybutton = "^0.5.0"
check-manifest = "^0.49"
black = "^23.00.0"
coverage = ">=6.4"
isort = "^5.10.1"
pylint = "2.13.9"
Sphinx = ">=5.3.0"
furo = "^2023.3.27"
nox = "^2023.4.22"
pre-commit = "^2.19.0"
mypy = ">=0.9"
sphinx-multiversion = "^0.2.4"
[tool.poetry.dev-dependencies.pytest-xdist]
version = "^3.2.0"
extras = [
"psutil",
]
[tool.coverage.run]
source = [
"prysk",
"pytest_prysk",
]
disable_warnings = [
"module-not-imported",
]
[tool.pylint.master]
fail-under = 8
[tool.pylint.format]
max-line-length = 88
max-module-lines = 800
[tool.pylint.message_control]
disable = "C0330, C0326,E1101"
[tool.black]
line-length = 88
verbose = false
include = "\\.pyi?$"
[tool.isort]
profile = "black"
force_grid_wrap = 2
[tool.mypy]
files = [
"noxfile.py",
"scripts/**/*.py",
]
[tool.pytest.ini_options]
addopts = "-ra -q --strict-config --ignore=examples"
testpaths = [
"test",
]