|
a |
|
b/.gitignore |
|
|
1 |
.cookiecutter/state/ |
|
|
2 |
|
|
|
3 |
*.lock |
|
|
4 |
|
|
|
5 |
# Proposed convention |
|
|
6 |
scratch* |
|
|
7 |
|
|
|
8 |
# Nesta specific |
|
|
9 |
research_daps/ |
|
|
10 |
*.key |
|
|
11 |
|
|
|
12 |
# Report |
|
|
13 |
*.aux |
|
|
14 |
*.bbl |
|
|
15 |
*.blg |
|
|
16 |
|
|
|
17 |
# Metaflow |
|
|
18 |
.metaflow |
|
|
19 |
metaflow.s3.* |
|
|
20 |
.run_id |
|
|
21 |
|
|
|
22 |
# Notebooks (use jupytext instead!) |
|
|
23 |
*.ipynb |
|
|
24 |
|
|
|
25 |
# Byte-compiled / optimized / DLL files |
|
|
26 |
__pycache__/ |
|
|
27 |
*.py[cod] |
|
|
28 |
|
|
|
29 |
# C extensions |
|
|
30 |
*.so |
|
|
31 |
|
|
|
32 |
# Distribution / packaging |
|
|
33 |
.Python |
|
|
34 |
env/ |
|
|
35 |
build/ |
|
|
36 |
develop-eggs/ |
|
|
37 |
dist/ |
|
|
38 |
downloads/ |
|
|
39 |
eggs/ |
|
|
40 |
.eggs/ |
|
|
41 |
lib/ |
|
|
42 |
lib64/ |
|
|
43 |
parts/ |
|
|
44 |
sdist/ |
|
|
45 |
var/ |
|
|
46 |
*.egg-info/ |
|
|
47 |
.installed.cfg |
|
|
48 |
*.egg |
|
|
49 |
|
|
|
50 |
# PyInstaller |
|
|
51 |
# Usually these files are written by a python script from a template |
|
|
52 |
# before PyInstaller builds the exe, so as to inject date/other infos into it. |
|
|
53 |
*.manifest |
|
|
54 |
*.spec |
|
|
55 |
|
|
|
56 |
# Installer logs |
|
|
57 |
pip-log.txt |
|
|
58 |
pip-delete-this-directory.txt |
|
|
59 |
|
|
|
60 |
# Unit test / coverage reports |
|
|
61 |
htmlcov/ |
|
|
62 |
.tox/ |
|
|
63 |
.coverage |
|
|
64 |
.coverage.* |
|
|
65 |
.cache |
|
|
66 |
nosetests.xml |
|
|
67 |
coverage.xml |
|
|
68 |
*.cover |
|
|
69 |
.pytest_cache |
|
|
70 |
|
|
|
71 |
# Translations |
|
|
72 |
*.mo |
|
|
73 |
*.pot |
|
|
74 |
|
|
|
75 |
# Django stuff:/ |
|
|
76 |
*.log |
|
|
77 |
|
|
|
78 |
# Sphinx documentation |
|
|
79 |
docs/_build/ |
|
|
80 |
|
|
|
81 |
# PyBuilder |
|
|
82 |
target/ |
|
|
83 |
|
|
|
84 |
# configuration |
|
|
85 |
.env |
|
|
86 |
.config |
|
|
87 |
*.config |
|
|
88 |
|
|
|
89 |
# Database |
|
|
90 |
*.db |
|
|
91 |
*.rdb |
|
|
92 |
|
|
|
93 |
# Pycharm |
|
|
94 |
.idea |
|
|
95 |
|
|
|
96 |
# VS Code |
|
|
97 |
.vscode/ |
|
|
98 |
|
|
|
99 |
# Spyder |
|
|
100 |
.spyproject/ |
|
|
101 |
|
|
|
102 |
# Jupyter NB Checkpoints |
|
|
103 |
.ipynb_checkpoints/ |
|
|
104 |
|
|
|
105 |
# exclude /inputs and /outputs/data except top-level markdown |
|
|
106 |
/inputs/* |
|
|
107 |
!/inputs/*.md |
|
|
108 |
/outputs/data/* |
|
|
109 |
!/outputs/data/*.md |
|
|
110 |
/outputs/models/* |
|
|
111 |
!/outputs/models/*.md |
|
|
112 |
|
|
|
113 |
# Mac OS-specific storage files |
|
|
114 |
.DS_Store |
|
|
115 |
|
|
|
116 |
# vim |
|
|
117 |
*.swp |
|
|
118 |
*.swo |
|
|
119 |
*~ |
|
|
120 |
|
|
|
121 |
# Mypy cache |
|
|
122 |
.mypy_cache/ |
|
|
123 |
|
|
|
124 |
# NPM |
|
|
125 |
node_modules/ |
|
|
126 |
|
|
|
127 |
# Google Cloud credentials |
|
|
128 |
/credentials/ |