|
| 1 | +[build-system] |
| 2 | +requires = ["flit_core >=3.2,<4"] |
| 3 | +build-backend = "flit_core.buildapi" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "pdfly" |
| 7 | +authors = [{ name = "Martin Thoma", email = "[email protected]" }] |
| 8 | +maintainers = [{ name = "Martin Thoma", email = "[email protected]" }] |
| 9 | +description = "A pure-python CLI application to manipulate PDF files" |
| 10 | +readme = "README.md" |
| 11 | +dynamic = ["version"] |
| 12 | +license = { file = "LICENSE" } |
| 13 | +requires-python = ">=3.6.1" |
| 14 | + |
| 15 | +# https://pypi.org/pypi?%3Aaction=list_classifiers |
| 16 | +classifiers = [ |
| 17 | + "Development Status :: 1 - Planning", |
| 18 | + "Environment :: Console", |
| 19 | + "Intended Audience :: Developers", |
| 20 | + "License :: OSI Approved :: MIT License", |
| 21 | + "Natural Language :: English", |
| 22 | + "Operating System :: OS Independent", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3 :: Only", |
| 25 | + "Programming Language :: Python :: 3.7", |
| 26 | + "Programming Language :: Python :: 3.8", |
| 27 | + "Programming Language :: Python :: 3.9", |
| 28 | + "Programming Language :: Python :: 3.10", |
| 29 | +] |
| 30 | + |
| 31 | +dependencies = [ |
| 32 | + "pypdf>=3.8.2", |
| 33 | + "typer>=0.9.0", |
| 34 | + "pillow", |
| 35 | + "pydantic", |
| 36 | + "rich", |
| 37 | +] |
| 38 | + |
| 39 | +[project.urls] |
| 40 | +Source = "https://github.com/py-pdf/pdfly" |
| 41 | + |
| 42 | +[project.scripts] |
| 43 | +pdfly = "pdfly.cli:entry_point" |
| 44 | + |
| 45 | +[tool.pytest.ini_options] |
| 46 | +addopts = "--doctest-modules --cov=. --cov-report html:tests/reports/coverage-html --cov-report term-missing --ignore=docs/ --durations=3 --timeout=30" |
| 47 | +doctest_encoding = "utf-8" |
| 48 | + |
1 | 49 | [tool.black]
|
2 | 50 | line-length = 79
|
3 | 51 |
|
|
0 commit comments