diff --git a/pyproject.toml b/pyproject.toml index 8b13789..3108dca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/tampy.egg-info/PKG-INFO b/src/tampy.egg-info/PKG-INFO new file mode 100644 index 0000000..373cf9b --- /dev/null +++ b/src/tampy.egg-info/PKG-INFO @@ -0,0 +1,5 @@ +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 new file mode 100644 index 0000000..3c39871 --- /dev/null +++ b/src/tampy.egg-info/SOURCES.txt @@ -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 \ No newline at end of file diff --git a/src/tampy.egg-info/dependency_links.txt b/src/tampy.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/tampy.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/src/tampy.egg-info/top_level.txt b/src/tampy.egg-info/top_level.txt new file mode 100644 index 0000000..ebcc910 --- /dev/null +++ b/src/tampy.egg-info/top_level.txt @@ -0,0 +1 @@ +tampy diff --git a/src/tampy/__init__.py b/src/tampy/__init__.py index e69de29..e20e133 100644 --- a/src/tampy/__init__.py +++ b/src/tampy/__init__.py @@ -0,0 +1,2 @@ +"""Tampy package.""" + diff --git a/src/tampy/__main__.py b/src/tampy/__main__.py index e69de29..0d2e292 100644 --- a/src/tampy/__main__.py +++ b/src/tampy/__main__.py @@ -0,0 +1,6 @@ +"""Tampy CLI entry point.""" + +from tampy.cli import main + +if __name__ == "__main__": + main() diff --git a/src/tampy/__pycache__/__init__.cpython-314.pyc b/src/tampy/__pycache__/__init__.cpython-314.pyc new file mode 100644 index 0000000..e22363d Binary files /dev/null and b/src/tampy/__pycache__/__init__.cpython-314.pyc differ diff --git a/src/tampy/__pycache__/cli.cpython-314.pyc b/src/tampy/__pycache__/cli.cpython-314.pyc new file mode 100644 index 0000000..abcce10 Binary files /dev/null and b/src/tampy/__pycache__/cli.cpython-314.pyc differ diff --git a/src/tampy/__pycache__/transpiler.cpython-314.pyc b/src/tampy/__pycache__/transpiler.cpython-314.pyc new file mode 100644 index 0000000..6cdd65f Binary files /dev/null and b/src/tampy/__pycache__/transpiler.cpython-314.pyc differ