mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-11 18:46:55 +08:00
42 lines
457 B
Plaintext
42 lines
457 B
Plaintext
# Python cache and object files
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Coverage.py
|
|
.coverage
|
|
.cov
|
|
coverage.xml
|
|
/report/coverage
|
|
|
|
# mypy
|
|
/report/typing
|
|
|
|
# pytest
|
|
/report/unit
|
|
/tests/*.github
|
|
|
|
# bandit
|
|
/report/bandit
|
|
|
|
# setuptools
|
|
/build/**/*.*
|
|
/dist/**/*.*
|
|
/*.egg-info
|
|
|
|
# Dependencies
|
|
!requirements.txt
|
|
|
|
# Sphinx
|
|
doc/_build/
|
|
doc/myPackage/**/*.*
|
|
!doc/myPackage/index.rst
|
|
|
|
# BuildTheDocs
|
|
doc/_theme/**/*.*
|
|
|
|
# PyCharm project files
|
|
/.idea/workspace.xml
|
|
|
|
# Git files
|
|
!.git*
|