chore(repository): initialize project foundation
This commit is contained in:
+118
@@ -0,0 +1,118 @@
|
||||
# ------------------------------------------------------------------------------
|
||||
# Python
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# Compiled extensions
|
||||
*.so
|
||||
*.pyd
|
||||
*.dll
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Virtual Environments
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
ENV/
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Distribution / Packaging
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
build/
|
||||
dist/
|
||||
site/
|
||||
*.egg-info/
|
||||
.eggs/
|
||||
pip-wheel-metadata/
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Testing
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
.coverage.*
|
||||
htmlcov/
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Type Checking
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
.mypy_cache/
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Ruff
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
.ruff_cache/
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# MkDocs
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
/site/
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# IDEs
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
.vscode/
|
||||
.idea/
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Operating System
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Logs
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
*.log
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Environment Variables
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Temporary Files
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
*.tmp
|
||||
*.temp
|
||||
*.bak
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Jupyter
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
.ipynb_checkpoints/
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# Coverage Reports
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
coverage.xml
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# PyInstaller
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
*.manifest
|
||||
*.spec
|
||||
Reference in New Issue
Block a user