-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
36 lines (30 loc) · 1014 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pdf-watermark"
dynamic = ["version", "dependencies"]
description = "A python CLI tool to add watermarks to a PDF"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Bastien Le Chenadec", email = "bastien.lechenadec@gmail.com" },
]
classifiers = [
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
keywords = ["pdf", "watermark", "cli"]
[project.scripts]
watermark = "pdf_watermark.watermark:cli"
[project.urls]
Homepage = "https://github.com/bastienlc/pdf-watermark"
Repository = "https://github.com/bastienlc/pdf-watermark.git"
"Bug Tracker" = "https://github.com/bastienlc/pdf-watermark/issues"
[tool.setuptools_scm]
version_file = "src/pdf_watermark/_version.py"
local_scheme = "no-local-version"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.pytest.ini_options]
pythonpath = "src"