44 lines
334 B
Plaintext
44 lines
334 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.coverage
|
|
.venv/
|
|
venv/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
.gitignore
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Documentation
|
|
docs/
|
|
*.md
|
|
LICENSE
|
|
CONTRIBUTING.md
|
|
|
|
# Development
|
|
node_modules/
|
|
Makefile
|
|
.env*
|
|
|
|
# Test
|
|
tests/
|
|
pytest.ini
|