summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Ghaben <michaelghaben@gmail.com>2026-02-07 23:43:27 -0800
committerMichael Ghaben <michaelghaben@gmail.com>2026-02-07 23:43:27 -0800
commit109c8b37b0aa9704551c02dcef861eedc37793f7 (patch)
treea9db693b16471f568898c31f0d18fa95af0af04d
Initial commitHEADmaster
-rw-r--r--.gitignore10
-rw-r--r--.python-version1
-rw-r--r--README.md0
-rw-r--r--main.py6
-rw-r--r--pyproject.toml7
-rw-r--r--uv.lock8
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]
4build/
5dist/
6wheels/
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
diff --git a/main.py b/main.py
new file mode 100644
index 0000000..431c2e7
--- /dev/null
+++ b/main.py
@@ -0,0 +1,6 @@
1def main():
2 print("Hello from husky!")
3
4
5if __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]
2name = "husky"
3version = "0.1.0"
4description = "Add your description here"
5readme = "README.md"
6requires-python = ">=3.13"
7dependencies = []
diff --git a/uv.lock b/uv.lock
new file mode 100644
index 0000000..db78840
--- /dev/null
+++ b/uv.lock
@@ -0,0 +1,8 @@
1version = 1
2revision = 3
3requires-python = ">=3.13"
4
5[[package]]
6name = "husky"
7version = "0.1.0"
8source = { virtual = "." }