mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
39 lines
432 B
Plaintext
39 lines
432 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
|
|
|
|
# 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*
|