feat: add basic project structure
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
5
src/tampy.egg-info/PKG-INFO
Normal file
5
src/tampy.egg-info/PKG-INFO
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
Metadata-Version: 2.4
|
||||||
|
Name: tampy
|
||||||
|
Version: 0.0.0
|
||||||
|
License-File: LICENSE
|
||||||
|
Dynamic: license-file
|
||||||
13
src/tampy.egg-info/SOURCES.txt
Normal file
13
src/tampy.egg-info/SOURCES.txt
Normal 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
|
||||||
1
src/tampy.egg-info/dependency_links.txt
Normal file
1
src/tampy.egg-info/dependency_links.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
1
src/tampy.egg-info/top_level.txt
Normal file
1
src/tampy.egg-info/top_level.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
tampy
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
"""Tampy package."""
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
"""Tampy CLI entry point."""
|
||||||
|
|
||||||
|
from tampy.cli import main
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
|||||||
BIN
src/tampy/__pycache__/__init__.cpython-314.pyc
Normal file
BIN
src/tampy/__pycache__/__init__.cpython-314.pyc
Normal file
Binary file not shown.
BIN
src/tampy/__pycache__/cli.cpython-314.pyc
Normal file
BIN
src/tampy/__pycache__/cli.cpython-314.pyc
Normal file
Binary file not shown.
BIN
src/tampy/__pycache__/transpiler.cpython-314.pyc
Normal file
BIN
src/tampy/__pycache__/transpiler.cpython-314.pyc
Normal file
Binary file not shown.
Reference in New Issue
Block a user