From 3d95351404ed9b5f350ba6c49a167722658f3954 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 2 May 2025 11:37:31 -0500 Subject: [PATCH] Initial commit --- .gitignore | 10 ++++++++++ README.md | 3 +++ pyproject.toml | 15 +++++++++++++++ src/ty/__init__.py | 2 ++ 4 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 pyproject.toml create mode 100644 src/ty/__init__.py 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..5949fd4 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# ty + +This project is coming soon. diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..911226d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[project] +name = "ty" +version = "0.0.0a1" +description = "This project is coming soon." +readme = "README.md" +authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }] +requires-python = ">=3.8" +dependencies = [] + +[project.scripts] +ty = "ty:main" + +[build-system] +requires = ["uv_build>=0.7.1,<0.8"] +build-backend = "uv_build" diff --git a/src/ty/__init__.py b/src/ty/__init__.py new file mode 100644 index 0000000..25be6da --- /dev/null +++ b/src/ty/__init__.py @@ -0,0 +1,2 @@ +def main() -> None: + print("Hello from ty!")