-
Notifications
You must be signed in to change notification settings - Fork 12
/
.gitignore
88 lines (69 loc) · 2.49 KB
/
.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
78
79
80
81
82
83
84
85
86
87
88
# --------------------( LICENSE )--------------------
# Copyright 2014-2025 by Alexis Pietak & Cecil Curry.
# See "LICENSE" for further details.
#
# --------------------( SYNOPSIS )--------------------
# Git-specific dotfile instructing git to avoid tracking repository paths
# matching one or more glob expressions listed below by default.
#
# --------------------( SEE ALSO )--------------------
# For further details, see:
#
# * "man gitignore" for high-level commentary.
# * "man 7 glob" for low-level commentary on glob syntax. Note, in particular,
# that glob() and hence ".gitignore" files support only a proper subset of
# full glob syntax supported by POSIX-compatible shells (e.g., bash, zsh).
# ....................{ DIRECTORIES ~ top-level }....................
# Ignore all top-level BETSE-specific temporary directories.
/output/
/sample_sim/
# Ignore all top-level PyInstaller-specific temporary directories.
/freeze/build/
/freeze/dist/
# Ignore all top-level pip-specific temporary directories.
/pip-wheel-metadata/
# Ignore all top-level py.test-specific temporary directories.
/.cache/
/.pytest_cache/
# Ignore all top-level setuptools-specific temporary directories.
/build/
/dist/
/.eggs/
/*.egg-info/
# Ignore all top-level tox-specific temporary directories.
/.tox/
# ....................{ DIRECTORIES ~ general }....................
# Ignore all Python-specific cache directories.
__pycache__/
# Ignore all PyCharm-specific subdirectories.
.idea/
# Ignore all Rope-specific subdirectories.
.ropeproject/
# ....................{ FILES ~ top-level }....................
# Ignore all top-level Coverage.py-specific output files.
/.coverage
/.coverage.*
/coverage.xml
# Ignore all top-level Nose-specific output files.
/nosetests.xml
# Ignore all top-level setuptools-specific output files.
/MANIFEST
# Ignore top-level PyInstaller-specific output files *NOT* intended to be
# modified. ".spec"-suffixed files *ARE* intended to be modified and hence
# excluded.
/*.manifest
# Ignore top-level symbolic links to BETSE-dependent projects (e.g., BETSEE).
/betsee_link
# ....................{ FILES ~ general }....................
# Ignore all BETSE-specific output files.
*.btse
# Ignore all audio and video files.
*.mp4
# Ignore all macOS-specific cache files.
.DS_Store
# Ignore all Python-specific cache files.
*.py[cod]
# Ignore all temporary files.
*~
*.log
*.sw?