diff options
| author | seth <[email protected]> | 2022-08-21 13:14:00 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-08-21 13:15:45 -0400 |
| commit | a615f6cc4901a05f7fe72a55d005280119cb792e (patch) | |
| tree | 0f3ddc4ac0a27e3a0077e0b79082df17a4e6e5b9 /pyproject.toml | |
| parent | a2ff6e94b6ba21818613611cb3fed15e56f4894d (diff) | |
refactor and (try to) follow PEP518
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 |
