-
Notifications
You must be signed in to change notification settings - Fork 35
/
.gitignore
44 lines (33 loc) · 856 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# See 'man gitignore'.
#
# Note that if a file or dir is already being tracked in git and you put it
# in this file you still need to remove the tracking with:
# git rm --cache <filename>
# or
# git rm -r --cache <dirname>
# You can use regular rm, too, but it will remove the file or dir on the drive.
# Use this command to see what files are being tracked:
# git ls-files
# Rope
.ropeproject
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# Sphinx documentation build directory.
_build
# Setuptools stuff.
*.egg-info
# Cache for py.test.
.cache
# Vim swap.
*.swp
# PyCharm.
.idea
# Installer logs.
pip-log.txt
pip-delete-this-directory.txt
# Distribution directory from setup.py sdist.
/dist
!*/dist # Needed for older versions of git (don't ignore dist deeper than root level).
# Mypy type-checker cache.
.mypy_cache