mirror of
https://github.com/cyclotruc/gitingest.git
synced 2026-04-28 08:39:29 +00:00
41 lines
333 B
Text
41 lines
333 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.log
|
|
|
|
# Virtual environment
|
|
venv
|
|
.env
|
|
.venv
|
|
ENV
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# Project specific
|
|
docs/
|
|
tests/
|
|
*.md
|
|
LICENSE
|
|
pytest.ini
|
|
setup.py
|