-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (33 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"ninja",
"cmake>=3.12",
"pybind11",
]
build-backend = "setuptools.build_meta"
[project]
name = "litehtmlpy"
version = "0.1.0"
authors = [
{ name="Grzegorz Makarewicz", email="[email protected]" },
]
description = "LiteHtmlPy is a solution that helps python developers to create printouts and previews of html5/css3 pages without using a web browser."
readme = "README.md"
requires-python = ">=3.7"
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business',
'Topic :: Text Processing',
'Topic :: Multimedia :: Graphics',
]
[project.urls]
"Homepage" = "https://github.com/m32/litehtmlpy"
"Bug Tracker" = "https://github.com/m32/litehtmlpy/issues"