-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.02 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
[tool.poetry]
name = "pdfmate"
version = "0.4.9"
description = "Pyppeteer-based async python wrapper to convert html to pdf"
authors = ["TK <dk@terminalkitten.com>"]
license = "MIT"
homepage = "https://github.com/terminalkitten"
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Markup',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: XML',
'Topic :: Utilities'
]
readme = 'README.md'
include = [
'README.md',
'AUTHORS.rst',
'HISTORY.md'
]
[tool.poetry.dependencies]
python = "^3.6.1"
pyppeteer = "^0.2.2"
PyPDF2 = "^1.26.0"
asgiref = "^3.3.0"
[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
pytest-asyncio = "^0.14.0"
asynctest = "^0.13.0"
[tool.poetry.scripts]
pdfmate-setup = 'pdfmate.setup:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"