summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 269061b9a29f7c173918d07b68368b6badc915ff (plain)
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
[project]
name = "wsdiff"
version = "0.3.0"
authors = [{name="jaseg", email="code@jaseg.de"}]
description = "wsdiff is a tool that produces a syntax-highlighted, self-contained, static HTML file that will show a colored, syntax-highlighted diff of two files or folders without external dependencies or javascript."
requires-python = ">=3.7"
readme = "README.md"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    ]
dependencies = ["pygments", "witchhazel"]
    
[project.urls]
"Source" = "https://git.jaseg.de/wsdiff.git"
"Bug Tracker" = "https://github.com/jaseg/wsdiff/issues"

[project.scripts]
wsdiff = "wsdiff:cli"

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"