chore: add .gitignore to exclude generated files

This commit is contained in:
2026-05-03 13:00:53 -05:00
parent c760a98e60
commit c2cda3f619
10 changed files with 2 additions and 32 deletions

2
.gitignore vendored
View File

@@ -5,3 +5,5 @@ __pycache__/
*.map
.env
.venv/
test.py
test.tampy

View File

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

View File

@@ -1,13 +0,0 @@
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

@@ -1 +0,0 @@

View File

@@ -1 +0,0 @@
tampy

View File

@@ -1,6 +0,0 @@
x = 1
y = 2
if x > y:
print('x is greater')
else:
print('y is greater')

View File

@@ -1,6 +0,0 @@
x = 1
y = 2
if x > y:
print("x is greater")
else:
print("y is greater")