-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.38 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "flyfield"
version = "2026.04.13"
description = "Tools for extracting, processing, and generating interactive fields for PDFs containing white box fields."
readme = "README.md"
requires-python = ">=3.9"
authors = [
{name = "flywire", email = "flywire0@gmail.com"}
]
keywords = ["pdf", "form", "fields", "extraction", "pymupdf", "pypdfforms"]
license = {text = "GPL-3.0-or-later"}
dependencies = [
"PyMuPDF>=1.18.0",
"PyPDFForm>=3.0.0,<5.0.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
[project.scripts]
flyfield = "flyfield.cli:main"
[tool.setuptools.packages.find]
where = ["."]
[project.optional-dependencies]
dev = [
"mkdocs>=1.4",
"mkdocs-material>=9.1",
"mkdocstrings[python]>=0.19",
"black>=23.3.0",
"isort>=5.12.0",
"pytest>=7.4",
"tox>=4.19",
]
[project.urls]
Homepage = "https://github.com/flywire/flyfield"
Documentation = "https://flywire.github.io/flyfield/"