copier/.gitignore
Jairo Llopis 67cc4ffde3
feat: nix support
- Provide a dev shell.
- Provide a nix package.
- Provide a nix flake.
- Development environment based on direnv.
- Docs.
- Configure Gitpod to use direnv and nix.
- Configure Cachix out of the box, and document how to use it.
- Add direnv and nix to CI.
- Satisfy some linters that came from Precommix, even when Precommix was later discarded.
- Mark some tests as impure.
- Run only pure tests when building Copier with Nix.
- Add poetry loader to direnv.
- Update contribution guide.
2023-01-18 09:40:08 +00:00

67 lines
703 B
Plaintext

# Byte-compiled / optimized / DLL files
__pycache__
*.py[cod]
*$py.class
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Environments
__pypackages__
.pdm.toml
poetry.toml
.env
.venv
covreport
pip-wheel-metadata
.tox
# Documentation
*/_build/*
*/site/*
/site
.mypy_cache/*
.cache
*.log
# Editors
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
*.sublime-workspace
*.sublime-project
.idea/
# Tests artifacts
.coverage*
htmlcov/
# macOS
.DS_Store
# Nix
/.devenv
/.direnv
/.pre-commit-config.yaml
/result*