You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
606 B
37 lines
606 B
6 years ago
|
[tool.poetry]
|
||
|
name = "pdftools"
|
||
|
version = "0.1.0"
|
||
|
description = "Custom tools for pdf related stuff"
|
||
|
authors = ["Holger Frey <frey@imtek.de>"]
|
||
|
license = "Beerware"
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.7"
|
||
|
reportlab = "^3.5"
|
||
|
pdfrw = "^0.4.0"
|
||
|
click = "^7.0"
|
||
|
|
||
|
[tool.poetry.dev-dependencies]
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry>=0.12"]
|
||
|
build-backend = "poetry.masonry.api"
|
||
|
|
||
|
[tool.poetry.scripts]
|
||
|
nameplates = 'pdftools.cli:nameplates'
|
||
|
addruler = 'pdftools.cli:addruler'
|
||
|
|
||
|
[tool.black]
|
||
|
line-length = 79
|
||
|
py37 = true
|
||
|
include = '\.pyi?$'
|
||
|
exclude = '''
|
||
|
/(
|
||
|
\.git
|
||
|
| \.tox
|
||
|
| \.venv
|
||
|
| build
|
||
|
| dist
|
||
|
)/
|
||
|
'''
|