Initial commit

This commit is contained in:
Zanie Blue 2025-05-02 11:37:31 -05:00
commit 3d95351404
4 changed files with 30 additions and 0 deletions

10
.gitignore vendored Normal file
View file

@ -0,0 +1,10 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# ty
This project is coming soon.

15
pyproject.toml Normal file
View file

@ -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"

2
src/ty/__init__.py Normal file
View file

@ -0,0 +1,2 @@
def main() -> None:
print("Hello from ty!")