forked from queens-py/queens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
77 lines (63 loc) · 975 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
__pycache__
# do not track doc files that are automatically build
doc/build
doc/source/*.rst
# but keep index.rst
!doc/source/index.rst
!doc/source/intro.rst
!doc/source/tutorials.rst
!doc/source/architecture.rst
# C extensions
*.so
# distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# notebook checkpoints
*.ipynb_checkpoints
# pytest related
.pytest_cache/
.coverage*
# singularity images
singularity_image.sif
hashfile.txt
# temporary files
temporary_submission_script.sh
# windows pycharm idea files
.idea
# ignore egg package files
.eggs/
*.egg-info/
# ignore config folder
config/
# ignore temporarily created requirements file
requirements.tmp
# vscode config files
.vscode/settings.json
.vscode/launch.json
*.code-workspace
# environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# best editor ever files
*.swp