Add initial project structure with .gitignore, pyproject.toml, and main application files

This commit is contained in:
2025-03-25 17:12:45 +00:00
commit d1ef966e65
4 changed files with 94 additions and 0 deletions

17
.gitignore vendored Normal file
View File

@@ -0,0 +1,17 @@
# Python
__pycache__/
*.py[cod]
*$py.class
# Virtual environment
env/
# Configuration
config/config.ini
# IDE
.vscode/
.idea/
# Streamlit
.streamlit/