Skip to content

Commit a746249

Browse files
committed
Improve gitignore for sphinx
1 parent efa4e89 commit a746249

File tree

1 file changed

+31
-6
lines changed

1 file changed

+31
-6
lines changed

.gitignore

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,40 @@
11
# mac file systems
22
.DS_Store
33

4-
# compiled python codes
5-
*.pyc
6-
*egg-info/**
7-
dist/**
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
8+
9+
# C extensions
10+
*.so
11+
12+
# Distribution / packaging
13+
.Python
14+
build/
15+
develop-eggs/
16+
dist/
17+
downloads/
18+
eggs/
19+
.eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
wheels/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
MANIFEST
831

932
.idea/**
1033

34+
# Tutorial
1135
**/\.ipynb_checkpoints/**
1236
**/SegTrackv2.zip
1337
**/SegTrackv2/**
14-
build/**
15-
dist/**
1638

1739
# Vscode
1840
.vscode/**
@@ -23,3 +45,6 @@ venv*/**
2345

2446
# Pyenv
2547
.python-version
48+
49+
# Sphinx
50+
docs/build

0 commit comments

Comments
 (0)