mirror of
https://github.com/trycua/computer.git
synced 2026-01-04 12:30:08 -06:00
37 lines
338 B
Plaintext
37 lines
338 B
Plaintext
# Version control
|
|
.git
|
|
.github
|
|
.gitignore
|
|
|
|
# Environment and cache
|
|
.venv
|
|
.env
|
|
.env.local
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
.pytest_cache
|
|
.pdm-build
|
|
|
|
# Distribution / packaging
|
|
dist
|
|
build
|
|
*.egg-info
|
|
|
|
# Development
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
|
|
# Docs
|
|
docs/site
|
|
|
|
# Notebooks
|
|
notebooks/.ipynb_checkpoints
|
|
|
|
# Docker
|
|
Dockerfile
|
|
.dockerignore |