-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.25 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
[build-system]
requires = ["hatchling","hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pystitcher"
dynamic = ["version"]
description = "Stitch together a PDF file from multiple sources in a declarative manner"
readme = {file = "README.md", content-type = "text/markdown"}
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "Nemo", email = "python@captnemo.in" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
dependencies = [
"html5lib>=1.1",
"Markdown>=3.6",
"pypdf>=4.3.1",
"validators>=0.33.0",
]
[project.optional-dependencies]
testing = [
"pytest",
"pytest-cov",
"setuptools",
]
[project.scripts]
pystitcher = "pystitcher.skeleton:run"
[project.urls]
Changelog = "https://github.com/captn3m0/pystitcher/blob/main/CHANGELOG.md"
Documentation = "https://github.com/captn3m0/pystitcher/wiki"
Homepage = "https://github.com/captn3m0/pystitcher"
Source = "https://github.com/captn3m0/pystitcher"
Tracker = "https://github.com/captn3m0/pystitcher/issues"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/pystitcher/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"/src",
]
[tool.hatch.envs.default]
installer = "uv"