commit c8bb21cc20cf46fc6bad6457a84d4b5c125f23b0 Author: klemek Date: Sat Apr 11 16:18:57 2026 +0200 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4bb4026 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.venv +.vscode \ No newline at end of file diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..6324d40 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..084d7cd --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from stapler!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8e185b7 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "stapler" +version = "0.1.0" +description = "Static pages as simple as a gzip file" +readme = "README.md" +requires-python = ">=3.14" +dependencies = [] diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..7f1c342 --- /dev/null +++ b/uv.lock @@ -0,0 +1,8 @@ +version = 1 +revision = 3 +requires-python = ">=3.14" + +[[package]] +name = "staple" +version = "0.1.0" +source = { virtual = "." }