forked from vgalin/html2image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.21 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
[tool.poetry]
name = "html2image"
version = "2.0.4.3"
description = "Package acting as a wrapper around the headless mode of existing web browsers to generate images from URLs and from HTML+CSS strings or files."
authors = ["vgalin"]
license = "MIT"
# Added
readme = "README.md"
homepage = "https://github.com/vgalin/html2image"
repository = "https://github.com/vgalin/html2image"
keywords = ["html", "css", "screenshot", "image", "chrome", "html to image", "css to image", "chromium-browser", "chromium"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: Microsoft",
"Operating System :: Unix",
"Operating System :: MacOS",
"Topic :: Utilities",
"Topic :: Software Development :: User Interfaces",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.6"
websocket-client = "1.*"
requests = "*"
[tool.poetry.dev-dependencies]
Pillow = "^8.2.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
hti = 'html2image:main'
html2image = 'html2image:main'