Skip to content

Commit 4a8385f

Browse files
committed
gitig
1 parent 97ef4fc commit 4a8385f

File tree

2 files changed

+180
-171
lines changed

2 files changed

+180
-171
lines changed

.gitignore

Lines changed: 180 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
1+
.ipynb_checkpoints
2+
examples/data/
3+
.vscode
4+
## macOS ###
5+
# General
6+
.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# Icon must end with two \r
11+
Icon
12+
13+
14+
# Thumbnails
15+
._*
16+
17+
# Files that might appear in the root of a volume
18+
.DocumentRevisions-V100
19+
.fseventsd
20+
.Spotlight-V100
21+
.TemporaryItems
22+
.Trashes
23+
.VolumeIcon.icns
24+
.com.apple.timemachine.donotpresent
25+
26+
# Directories potentially created on remote AFP share
27+
.AppleDB
28+
.AppleDesktop
29+
Network Trash Folder
30+
Temporary Items
31+
.apdisk
32+
33+
### Python ###
34+
# Byte-compiled / optimized / DLL files
35+
__pycache__/
36+
*.py[cod]
37+
*$py.class
38+
39+
# C extensions
40+
*.so
41+
42+
# Distribution / packaging
43+
.Python
44+
build/
45+
develop-eggs/
46+
dist/
47+
downloads/
48+
eggs/
49+
.eggs/
50+
parts/
51+
sdist/
52+
var/
53+
wheels/
54+
pip-wheel-metadata/
55+
share/python-wheels/
56+
*.egg-info/
57+
.installed.cfg
58+
*.egg
59+
MANIFEST
60+
61+
# PyInstaller
62+
# Usually these files are written by a python script from a template
63+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
64+
*.manifest
65+
*.spec
66+
67+
# Installer logs
68+
pip-log.txt
69+
pip-delete-this-directory.txt
70+
71+
# Unit test / coverage reports
72+
htmlcov/
73+
.tox/
74+
.nox/
75+
.coverage
76+
.coverage.*
77+
.cache
78+
nosetests.xml
79+
coverage.xml
80+
*.cover
81+
*.pyCordialement,
82+
~Nicolas CARPi
83+
84+
ver
85+
.hypothesis/
86+
.pytest_cache/
87+
pytestdebug.log
88+
89+
# Translations
90+
*.mo
91+
*.pot
92+
93+
# Django stuff:
94+
*.log
95+
local_settings.py
96+
db.sqlite3
97+
db.sqlite3-journal
98+
99+
# Flask stuff:
100+
instance/
101+
.webassets-cache
102+
103+
# Scrapy stuff:
104+
.scrapy
105+
106+
# Sphinx documentation
107+
docs/_build/
108+
doc/_build/
109+
110+
# PyBuilder
111+
target/
112+
113+
# Jupyter Notebook
114+
.ipynb_checkpoints
115+
116+
# IPython
117+
profile_default/
118+
ipython_config.py
119+
120+
# pyenv
121+
.python-version
122+
123+
# pipenv
124+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
125+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
126+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
127+
# install all needed dependencies.
128+
#Pipfile.lock
129+
130+
# poetry
131+
#poetry.lock
132+
133+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
134+
__pypackages__/
135+
136+
# Celery stuff
137+
celerybeat-schedule
138+
celerybeat.pid
139+
140+
# SageMath parsed files
141+
*.sage.py
142+
143+
# Environments
144+
# .env
145+
.env/
146+
.venv/
147+
env/
148+
venv/
149+
ENV/
150+
env.bak/
151+
venv.bak/
152+
pythonenv*
153+
154+
# Spyder project settings
155+
.spyderproject
156+
.spyproject
157+
158+
# Rope project settings
159+
.ropeproject
160+
161+
# mkdocs documentation
162+
/site
163+
164+
# mypy
165+
.mypy_cache/
166+
.dmypy.json
167+
dmypy.json
168+
169+
# Pyre type checker
170+
.pyre/
171+
172+
# pytype static type analyzer
173+
.pytype/
174+
175+
# operating system-related files
176+
# thumbnail cache on Windows
177+
Thumbs.db
178+
179+
# profiling data
180+
.prof

.ipynb_checkpoints/TowardsORAwayFromTissue-checkpoint.ipynb

Lines changed: 0 additions & 171 deletions
This file was deleted.

0 commit comments

Comments
 (0)