-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (47 loc) · 1.17 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pictureshow"
version = "0.13.0"
description = "Save pictures to PDF."
authors = ["Michal Porteš <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/mportesdev/pictureshow"
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "pictureshow", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.9"
pillow = "^11"
platformdirs = "^4"
reportlab = "^4"
[tool.poetry.scripts]
pictureshow = "pictureshow.cli:main"
[tool.poetry.group.develop]
optional = true
[tool.poetry.group.develop.dependencies]
pytest = "^8"
pytest-mock = "^3"
pytest-xdist = "^3"
pypdf = "^5"
[tool.pytest.ini_options]
addopts = "-ra --numprocesses=auto"
xfail_strict = true
[tool.coverage.run]
branch = true
source = ["pictureshow"]
[tool.coverage.report]
show_missing = true
[tool.bandit.assert_used]
skips = ["tests/*"]
[tool.scriv]
format = "md"
md_header_level = "2"
version = "literal: pyproject.toml: tool.poetry.version"