-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (70 loc) · 1.78 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
83
[tool.poetry]
name = "dml-pdfmerge"
version = "2024.11.1020" # Published version is managed BY bumper
description = "A short description"
authors = ["Dave Lane <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/dmlane/dml-pdfmerge"
include = [
{ path = 'LICENSE', format = 'sdist' },
{ path = 'README.md', format = 'sdist' },
{ path = 'docs', format = 'sdist' },
{ path = 'tests', format = 'sdist' },
]
packages = [
{ include = "pdfmerge", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.11,<4"
pypdf = ">=3.17.3"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
myst-parser = ">=0.16"
sphinx = ">=4.0"
sphinx-autobuild = ">=2021.0"
sphinx-rtd-theme = ">=1.0"
[tool.poetry.group.dev.dependencies]
black = ">=23.3.0"
bumpver = ">=2022.1120"
isort = ">=5.12.0"
mypy = ">=1.2.0"
pylint = ">=2.17.2"
pypi-simple = ">=1.4.0"
pytest = ">=7.3.1"
pytest-resource-path = "^1.3.0"
setuptools = "^68.2.2"
pre-commit = "^3.5.0"
[tool.poetry.scripts]
# Section managed with vi
pdfmerge = "pdfmerge.pdfmerge:main"
[[tool.poetry.source]]
name = "repositories.fury"
url = "https://pypi.fury.io/dave-lane/"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.bumpver]
current_version = "2024.11.1020"
version_pattern = "YYYY.MM.BUILD[-PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'^version = "{version}"',
'^current_version = "{version}"',
]
[tool.black]
line_length = 100
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
pythonpath = "src/pdfmerge"
[tool.homebrew]
build = true