-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (72 loc) · 1.84 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "image-to-pdf"
description = "Convert image files to PDF."
dynamic = ["version"]
license = {text = "MIT-CMU"}
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Jeffrey A. Clark"},
{name = "stefan6419846 (standalone conversion package)"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: CMU License (MIT-CMU)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Utilities",
"Typing :: Typed",
]
keywords = [
"image",
"pdf",
"conversion"
]
requires-python = ">=3.9, <4"
dependencies = [
"Pillow",
]
[project.urls]
Homepage = "https://github.com/stefan6419846/image-to-pdf"
# Documentation = "https://image-to-pdf.readthedocs.io"
Repository = "https://github.com/stefan6419846/image-to-pdf"
Issues = "https://github.com/stefan6419846/image-to-pdf/issues"
Changelog = "https://github.com/stefan6419846/image-to-pdf/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
# Linting
"flake8",
"flake8-bugbear",
"pep8-naming",
# Test code
"coverage[toml]",
"requests",
"pypdf",
# Spelling
"codespell",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "image_to_pdf.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = [
"image_to_pdf",
"image_to_pdf.*"
]
namespaces = false
[tool.codespell]
skip = './.git/*,./.mypy*,./venv*,./docs/_build/*,*.pdf,'
check-hidden = true
ignore-words-list = 'assertIn,'
[tool.coverage.run]
branch = true
source = [
"image_to_pdf",
]