-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.36 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pdfmerging"
description = "pdfmerging is a set of utilities and PDF merge server"
readme = "README.md"
requires-python = ">=3.10.2"
license = "MIT"
authors = [
{ name = "Petri Savolainen", email = "[email protected]"},
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"pymupdf",
"python-dotenv",
"pyyaml",
"python-magic",
"fastapi"
]
dynamic = ["version"]
[project.scripts]
pdfmerge = "pdfmerging.merging:cmdline"
[project.urls]
Homepage = "https://github.com/koodaamo/pdfmerging"
Documentation = "https://github.com/koodaamo/pdfmerging"
[tool.hatch.version]
path = "pdfmerging/__init__.py"