feat: add basic project structure

This commit is contained in:
2026-05-03 12:55:11 -05:00
parent 23af363dfb
commit 89b4523895
10 changed files with 36 additions and 0 deletions

View File

@@ -1 +1,9 @@
[project]
name = "tampy"
version = "0.1.0"
description = "Tamil code compiler"
requires-python = ">=3.9"
dependencies = []
[project.scripts]
tampy = "tampy.cli:main"

View File

@@ -0,0 +1,5 @@
Metadata-Version: 2.4
Name: tampy
Version: 0.0.0
License-File: LICENSE
Dynamic: license-file

View File

@@ -0,0 +1,13 @@
LICENSE
README.md
pyproject.toml
src/tampy/__init__.py
src/tampy/__main__.py
src/tampy/cli.py
src/tampy/keywords.py
src/tampy/transpiler.py
src/tampy.egg-info/PKG-INFO
src/tampy.egg-info/SOURCES.txt
src/tampy.egg-info/dependency_links.txt
src/tampy.egg-info/top_level.txt
tests/test.generated.py

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@
tampy

View File

@@ -0,0 +1,2 @@
"""Tampy package."""

View File

@@ -0,0 +1,6 @@
"""Tampy CLI entry point."""
from tampy.cli import main
if __name__ == "__main__":
main()

Binary file not shown.

Binary file not shown.

Binary file not shown.