From 6e717a277be2893a8d7bafa6b3784cffaf81f17e Mon Sep 17 00:00:00 2001 From: jaseg Date: Sat, 31 Dec 2022 23:38:19 +0100 Subject: Prepare package for PyPI upload --- pyproject.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..380cfc2 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[project] +name = "wsdiff" +version = "0.1.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"] + +[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" + -- cgit