added tests, files, workflow, toml, etc

This commit is contained in:
2026-05-19 17:52:03 -05:00
parent 409129eff1
commit 0fbbb30e5b
7 changed files with 457 additions and 0 deletions

44
.gitignore vendored Normal file
View File

@@ -0,0 +1,44 @@
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg-info/
*.egg
dist/
build/
wheels/
sdist/
# Virtual envs
.venv/
venv/
env/
# Testing
.pytest_cache/
.coverage
htmlcov/
# Ruff / linting
.ruff_cache/
# Mypy
.mypy_cache/
# Editors
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# ForeignThon compiled output
*.compiled.py
# Temporary Tests
tmp/**