diff --git a/.gitignore b/.gitignore index 11671f3..c9b6edb 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ __pycache__/ *.map .env .venv/ +test.py +test.tampy diff --git a/src/tampy.egg-info/PKG-INFO b/src/tampy.egg-info/PKG-INFO deleted file mode 100644 index 373cf9b..0000000 --- a/src/tampy.egg-info/PKG-INFO +++ /dev/null @@ -1,5 +0,0 @@ -Metadata-Version: 2.4 -Name: tampy -Version: 0.0.0 -License-File: LICENSE -Dynamic: license-file diff --git a/src/tampy.egg-info/SOURCES.txt b/src/tampy.egg-info/SOURCES.txt deleted file mode 100644 index 3c39871..0000000 --- a/src/tampy.egg-info/SOURCES.txt +++ /dev/null @@ -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 \ No newline at end of file diff --git a/src/tampy.egg-info/dependency_links.txt b/src/tampy.egg-info/dependency_links.txt deleted file mode 100644 index 8b13789..0000000 --- a/src/tampy.egg-info/dependency_links.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/tampy.egg-info/top_level.txt b/src/tampy.egg-info/top_level.txt deleted file mode 100644 index ebcc910..0000000 --- a/src/tampy.egg-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -tampy diff --git a/src/tampy/__pycache__/__init__.cpython-314.pyc b/src/tampy/__pycache__/__init__.cpython-314.pyc deleted file mode 100644 index 8a7def2..0000000 Binary files a/src/tampy/__pycache__/__init__.cpython-314.pyc and /dev/null differ diff --git a/src/tampy/__pycache__/cli.cpython-314.pyc b/src/tampy/__pycache__/cli.cpython-314.pyc deleted file mode 100644 index 996a8ca..0000000 Binary files a/src/tampy/__pycache__/cli.cpython-314.pyc and /dev/null differ diff --git a/src/tampy/__pycache__/transpiler.cpython-314.pyc b/src/tampy/__pycache__/transpiler.cpython-314.pyc deleted file mode 100644 index 88ffa6a..0000000 Binary files a/src/tampy/__pycache__/transpiler.cpython-314.pyc and /dev/null differ diff --git a/test.py b/test.py deleted file mode 100644 index c855b37..0000000 --- a/test.py +++ /dev/null @@ -1,6 +0,0 @@ -x = 1 -y = 2 -if x > y: - print('x is greater') -else: - print('y is greater') \ No newline at end of file diff --git a/test.tampy b/test.tampy deleted file mode 100644 index d6658b0..0000000 --- a/test.tampy +++ /dev/null @@ -1,6 +0,0 @@ -x = 1 -y = 2 -if x > y: - print("x is greater") -else: - print("y is greater")