feat(v0.1.0): project foundation with logging and config

This commit is contained in:
0x_n3m0_
2026-01-05 11:06:46 +02:00
commit 090974259e
65 changed files with 718034 additions and 0 deletions

89
.gitignore vendored Normal file
View File

@@ -0,0 +1,89 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual environments
venv/
env/
ENV/
env.bak/
venv.bak/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Environment variables
.env
.env.local
# Data files (large, don't commit)
data/raw/**/*.csv
data/raw/**/*.parquet
data/processed/**/*
!data/processed/**/.gitkeep
data/labels/**/*
!data/labels/**/.gitkeep
data/screenshots/**/*
!data/screenshots/**/.gitkeep
# Models (large binary files)
models/**/*.pkl
models/**/*.joblib
models/**/*.h5
models/**/*.pb
models/**/latest
# Logs
logs/**/*.log
logs/**/*.log.*
logs/**/archive/
# Jupyter Notebooks
.ipynb_checkpoints
*.ipynb
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.hypothesis/
# MyPy
.mypy_cache/
.dmypy.json
dmypy.json
# Backup files
backups/**/*
!backups/**/.gitkeep
# OS
Thumbs.db