forked from trevorcampbell/website_diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 806 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "website_diff"
version = "0.2.0"
description = "A simple tool for producing navigable, highlighted diffs of rendered HTML websites"
requires-python = ">=3.9"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Trevor Campbell", email = "trevor.d.campbell@gmail.com"},
]
dependencies = [
"click",
"loguru",
"beautifulsoup4",
"Pillow",
"numpy",
"vl-convert-python",
"selenium",
"cairosvg",
]
classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.scripts]
website_diff = "website_diff.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["website_diff"]