diff options
| author | Michael Ghaben <michaelghaben@gmail.com> | 2026-02-07 23:43:27 -0800 |
|---|---|---|
| committer | Michael Ghaben <michaelghaben@gmail.com> | 2026-02-07 23:43:27 -0800 |
| commit | 109c8b37b0aa9704551c02dcef861eedc37793f7 (patch) | |
| tree | a9db693b16471f568898c31f0d18fa95af0af04d | |
| -rw-r--r-- | .gitignore | 10 | ||||
| -rw-r--r-- | .python-version | 1 | ||||
| -rw-r--r-- | README.md | 0 | ||||
| -rw-r--r-- | main.py | 6 | ||||
| -rw-r--r-- | pyproject.toml | 7 | ||||
| -rw-r--r-- | uv.lock | 8 |
6 files changed, 32 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..505a3b1 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | # Python-generated files | ||
| 2 | __pycache__/ | ||
| 3 | *.py[oc] | ||
| 4 | build/ | ||
| 5 | dist/ | ||
| 6 | wheels/ | ||
| 7 | *.egg-info | ||
| 8 | |||
| 9 | # Virtual environments | ||
| 10 | .venv | ||
diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version | |||
| @@ -0,0 +1 @@ | |||
| 3.13 | |||
diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/README.md | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | def main(): | ||
| 2 | print("Hello from husky!") | ||
| 3 | |||
| 4 | |||
| 5 | if __name__ == "__main__": | ||
| 6 | main() | ||
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ee8ac54 --- /dev/null +++ b/pyproject.toml | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | [project] | ||
| 2 | name = "husky" | ||
| 3 | version = "0.1.0" | ||
| 4 | description = "Add your description here" | ||
| 5 | readme = "README.md" | ||
| 6 | requires-python = ">=3.13" | ||
| 7 | dependencies = [] | ||
| @@ -0,0 +1,8 @@ | |||
| 1 | version = 1 | ||
| 2 | revision = 3 | ||
| 3 | requires-python = ">=3.13" | ||
| 4 | |||
| 5 | [[package]] | ||
| 6 | name = "husky" | ||
| 7 | version = "0.1.0" | ||
| 8 | source = { virtual = "." } | ||
