diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-11 00:41:05 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-11 00:41:05 +1000 |
| commit | f663e6f6908a9dfb05ac22e867e726c1bf6f0960 (patch) | |
| tree | 4e9a8eaf275a2e145c6384964cdc5f351b49b924 /pyproject.toml | |
| parent | feat: impl workspace-action command (diff) | |
| download | caelestia-cli-f663e6f6908a9dfb05ac22e867e726c1bf6f0960.tar.gz caelestia-cli-f663e6f6908a9dfb05ac22e867e726c1bf6f0960.tar.bz2 caelestia-cli-f663e6f6908a9dfb05ac22e867e726c1bf6f0960.zip | |
internal: refactor for packaging
Package using python-build, python-installer and hatch
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..61c689a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[build-system] +requires = ["hatchling", "hatch-vcs"] +build-backend = "hatchling.build" + +[project] +name = "caelestia" +requires-python = ">=3.13" +dynamic = ["version"] + +[project.scripts] +caelestia = "caelestia:main" + +[tool.hatch.version] +source = "vcs" |