mirror of
https://github.com/beshu-tech/deltaglider.git
synced 2026-04-10 02:53:44 +02:00
- Use setuptools-scm for automatic version detection - Version now automatically derived from git tags - No need to manually update version in pyproject.toml - Added _version.py to .gitignore This enables automatic patch version bumping through git tags without manually updating any configuration files. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
85 lines
785 B
Plaintext
85 lines
785 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# UV
|
|
.uv/
|
|
uv.lock
|
|
|
|
# Testing
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Project specific
|
|
*.delta
|
|
reference.bin
|
|
/cache/
|
|
.deltaglider-cache/
|
|
|
|
# Test data
|
|
1.66.1/
|
|
test_*.txt
|
|
test_*.zip
|
|
*.dmg
|
|
*.tar.gz
|
|
app_*.zip
|
|
binary_*.exe
|
|
config_*.json
|
|
content_*/
|
|
recovered_*.zip
|
|
|
|
# MinIO/S3 test files
|
|
/tmp/
|
|
/test-data/
|
|
|
|
# Documentation builds
|
|
docs/_build/
|
|
docs/_static/
|
|
docs/_templates/
|
|
|
|
# Logs
|
|
*.logsrc/deltaglider/_version.py
|