-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (39 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
51 lines (39 loc) · 1.08 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "brandpipe"
version = "0.1.0"
description = "Brandpipe generation and validation CLI"
requires-python = ">=3.11"
dependencies = []
[project.optional-dependencies]
pseudowords = ["Wuggy"]
browser = ["playwright>=1.52,<2.0"]
[project.scripts]
brandpipe = "brandpipe.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
relative_files = true
source = ["brandpipe"]
data_file = "test_outputs/brandpipe/coverage/.coverage"
[tool.coverage.report]
show_missing = true
skip_covered = false
[tool.coverage.html]
directory = "test_outputs/brandpipe/coverage/html"
[tool.coverage.xml]
output = "test_outputs/brandpipe/coverage/coverage.xml"
[tool.coverage.json]
output = "test_outputs/brandpipe/coverage/coverage.json"
pretty_print = true
[tool.coverage.lcov]
output = "test_outputs/brandpipe/coverage/lcov.info"