commit 749bd59e99cb5e893e87b1586f6e00c9c5221fe8 Author: Adam Ladachowski Date: Sat Jan 24 19:06:06 2026 +0100 💬 Commit message: Update 2026-01-24 19:06:06, 6 files, 32 lines 📁 Files changed: 6 📝 Lines changed: 32 • .gitignore • .python-version • README.md • main.py • pyproject.toml • uv.lock 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/.python-version b/.python-version new file mode 100644 index 0000000..e4fba21 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.12 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..764406e --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from sft-get!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..64ef82c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "sft-get" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = [] diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..fa928c2 --- /dev/null +++ b/uv.lock @@ -0,0 +1,8 @@ +version = 1 +revision = 3 +requires-python = ">=3.12" + +[[package]] +name = "sft-get" +version = "0.1.0" +source = { virtual = "." }