From a615f6cc4901a05f7fe72a55d005280119cb792e Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 21 Aug 2022 13:14:00 -0400 Subject: refactor and (try to) follow PEP518 --- pyproject.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2e79d63 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,31 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "hiccup" +version = "0.0.1" +authors = [ + { name = "getchoo", email="getchoo@tuta.io"}, +] +description = "a python script to help keep you up to date" +readme = "README.md" +license = { file="LICENSE" } +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: POSIX :: Linux", +] + +[project.urls] +"Homepage" = "https://github.com/getchoo/hiccup" +"Bug Tracker" = "https://github.com/getchoo/hiccup/issues" + +[project.scripts] +hiccup = "hiccup:run" + +[tool.hatch.build] +include = [ + "hiccup.py" +] \ No newline at end of file -- cgit v1.2.3