From cd4e4248f0f5f3829425bdd887d93d5c3c020cf9 Mon Sep 17 00:00:00 2001 From: PotatoGamo Date: Thu, 6 Aug 2026 18:09:31 -0700 Subject: [PATCH] Initial Commit --- .gitignore | 10 ++++++++++ README.md | 0 main.py | 6 ++++++ pyproject.toml | 7 +++++++ 4 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 main.py create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..505a3b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv 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..986f929 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from glass-storm-demo!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..5ab9a14 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "glass-storm-demo" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.14" +dependencies = []