Skip to content

Commit a0a1371

Browse files
author
Frits (F.K.) Hermans
committed
initial commit
0 parents  commit a0a1371

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+7942
-0
lines changed

.gitignore

+174
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
# Data-folder
2+
/data/**
3+
!/data/**/
4+
5+
# VSCode
6+
.vscode/
7+
8+
# Generated documentation
9+
docs/build/*
10+
.pdf
11+
*.pdf
12+
13+
# To make sure that the folder structure is tracked
14+
!/**/.gitkeep
15+
16+
# General
17+
*~
18+
*.log
19+
.env
20+
*.swp
21+
.cache/*
22+
23+
# Python pickle files
24+
*.pickle
25+
*.pkl
26+
27+
# Byte-compiled / optimized / DLL files
28+
__pycache__/
29+
*.py[cod]
30+
*$py.class
31+
32+
# Jupyter Notebook
33+
.ipynb_checkpoints
34+
35+
# Pycharm
36+
.idea/
37+
38+
# Pytest
39+
*.pytest_cache/
40+
41+
*.DS_Store
42+
43+
44+
45+
# Created by https://www.gitignore.io/api/python
46+
# Edit at https://www.gitignore.io/?templates=python
47+
48+
### Python ###
49+
# Byte-compiled / optimized / DLL files
50+
__pycache__/
51+
*.py[cod]
52+
*$py.class
53+
54+
# C extensions
55+
*.so
56+
57+
# Distribution / packaging
58+
.Python
59+
build/
60+
develop-eggs/
61+
dist/
62+
downloads/
63+
eggs/
64+
.eggs/
65+
lib/
66+
lib64/
67+
parts/
68+
sdist/
69+
var/
70+
wheels/
71+
pip-wheel-metadata/
72+
share/python-wheels/
73+
*.egg-info/
74+
.installed.cfg
75+
*.egg
76+
MANIFEST
77+
78+
# PyInstaller
79+
# Usually these files are written by a python script from a template
80+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
81+
*.manifest
82+
*.spec
83+
84+
# Installer logs
85+
pip-log.txt
86+
pip-delete-this-directory.txt
87+
88+
# Unit test / coverage reports
89+
htmlcov/
90+
.tox/
91+
.nox/
92+
.coverage
93+
.coverage.*
94+
.cache
95+
nosetests.xml
96+
coverage.xml
97+
*.cover
98+
.hypothesis/
99+
.pytest_cache/
100+
101+
# Translations
102+
*.mo
103+
*.pot
104+
105+
# Django stuff:
106+
*.log
107+
local_settings.py
108+
db.sqlite3
109+
110+
# Flask stuff:
111+
instance/
112+
.webassets-cache
113+
114+
# Scrapy stuff:
115+
.scrapy
116+
117+
# Sphinx documentation
118+
docs/_build/
119+
120+
# PyBuilder
121+
target/
122+
123+
# Jupyter Notebook
124+
.ipynb_checkpoints
125+
126+
# IPython
127+
profile_default/
128+
ipython_config.py
129+
130+
# pyenv
131+
.python-version
132+
133+
# pipenv
134+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
135+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
136+
# having no cross-platform support, pipenv may install dependencies that don’t work, or not
137+
# install all needed dependencies.
138+
#Pipfile.lock
139+
140+
# celery beat schedule file
141+
celerybeat-schedule
142+
143+
# SageMath parsed files
144+
*.sage.py
145+
146+
# Environments
147+
.env
148+
.venv
149+
env/
150+
venv/
151+
ENV/
152+
env.bak/
153+
venv.bak/
154+
155+
# Spyder project settings
156+
.spyderproject
157+
.spyproject
158+
159+
# Rope project settings
160+
.ropeproject
161+
162+
# mkdocs documentation
163+
/site
164+
165+
# mypy
166+
.mypy_cache/
167+
.dmypy.json
168+
dmypy.json
169+
170+
# Pyre type checker
171+
.pyre/
172+
173+
# End of https://www.gitignore.io/api/python
174+
/external_dependencies/graphframes*.jar

0 commit comments

Comments
 (0)