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