-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.04 KB
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
[project]
name = "htmlcmp"
version = "1.2.4"
description = "Compare HTML files by rendered output"
classifiers = []
authors = [
{name = "Andreas Stefl"},
]
maintainers = [
{name = "Andreas Stefl", email="stefl.andreas@gmail.com"},
]
requires-python = ">=3.7"
readme = "README.md"
license = {file = "LICENSE.txt"}
dependencies = [
"pillow",
"selenium",
"flask",
"watchdog",
]
[project.scripts]
"compare-html" = "htmlcmp.compare_output:main"
"compare-html-server" = "htmlcmp.compare_output_server:main"
"html-render-diff" = "htmlcmp.html_render_diff:main"
"html-tidy" = "htmlcmp.tidy_output:main"
[project.urls]
homepage = "https://opendocument.app/"
source = "https://github.com/opendocument-app/compare-html"
download = "https://pypi.org/project/pyodr/#files"
tracker = "https://github.com/opendocument-app/compare-html/issues"
"release notes" = "https://github.com/opendocument-app/compare-html/releases"
[tool.pytest.ini_options]
pythonpath = ["src"]
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"