Skip to content

Commit

Permalink
Updates .gitignore (#270)
Browse files Browse the repository at this point in the history
Adds unit tests output files, sphinx build files, distribution/packaging files and PyCharm's project data files to .gitignore
  • Loading branch information
kdschlosser authored Feb 6, 2022
1 parent d3a35c1 commit 6a763f9
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,52 @@
# comtypes specific
comtypes/__pycache__/*.pyc
comtypes/client/__pycache__/*.pyc
comtypes/gen/__pycache__/*.pyc
comtypes/tools/__pycache__/*.pyc
comtypes.egg-info/*

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# PyCharm project data folder
.idea

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover


# Sphinx documentation
docs/_build/


0 comments on commit 6a763f9

Please sign in to comment.