mirror of
https://github.com/astral-sh/ty.git
synced 2025-07-07 11:35:00 +00:00
Initial commit
This commit is contained in:
commit
3d95351404
4 changed files with 30 additions and 0 deletions
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
# Python-generated files
|
||||
__pycache__/
|
||||
*.py[oc]
|
||||
build/
|
||||
dist/
|
||||
wheels/
|
||||
*.egg-info
|
||||
|
||||
# Virtual environments
|
||||
.venv
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# ty
|
||||
|
||||
This project is coming soon.
|
15
pyproject.toml
Normal file
15
pyproject.toml
Normal 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
2
src/ty/__init__.py
Normal file
|
@ -0,0 +1,2 @@
|
|||
def main() -> None:
|
||||
print("Hello from ty!")
|
Loading…
Add table
Add a link
Reference in a new issue