diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 31 |
1 files changed, 31 insertions, 0 deletions
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="[email protected]"}, +] +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 |
