|
a |
|
b/.gitignore |
|
|
1 |
# General file exclusion |
|
|
2 |
deduce/data/lookup/cache/* |
|
|
3 |
|
|
|
4 |
# Top level scripts ignored by default |
|
|
5 |
/*.py |
|
|
6 |
|
|
|
7 |
# Exclude the following filetypes |
|
|
8 |
*.sav |
|
|
9 |
*.sas7bdat |
|
|
10 |
*.xlsx |
|
|
11 |
*.csv |
|
|
12 |
*.xls |
|
|
13 |
|
|
|
14 |
# exclude the following directories |
|
|
15 |
output/ |
|
|
16 |
tests/local/ |
|
|
17 |
|
|
|
18 |
# autodoc |
|
|
19 |
docs/source/api/ |
|
|
20 |
############################################################################## |
|
|
21 |
## Python ## |
|
|
22 |
############################################################################## |
|
|
23 |
|
|
|
24 |
# Byte-compiled / optimized / DLL files |
|
|
25 |
__pycache__/ |
|
|
26 |
*.py[cod] |
|
|
27 |
*$py.class |
|
|
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 |
wheels/ |
|
|
47 |
*.egg-info/ |
|
|
48 |
.installed.cfg |
|
|
49 |
*.egg |
|
|
50 |
|
|
|
51 |
# PyInstaller |
|
|
52 |
# Usually these files are written by a python script from a template |
|
|
53 |
# before PyInstaller builds the exe, so as to inject date/other infos into it. |
|
|
54 |
*.manifest |
|
|
55 |
*.spec |
|
|
56 |
|
|
|
57 |
# Installer logs |
|
|
58 |
pip-log.txt |
|
|
59 |
pip-delete-this-directory.txt |
|
|
60 |
|
|
|
61 |
# Unit test / coverage reports |
|
|
62 |
htmlcov/ |
|
|
63 |
.tox/ |
|
|
64 |
.coverage |
|
|
65 |
.coverage.* |
|
|
66 |
.cache |
|
|
67 |
nosetests.xml |
|
|
68 |
coverage.xml |
|
|
69 |
*,cover |
|
|
70 |
.hypothesis/ |
|
|
71 |
*.lcov |
|
|
72 |
|
|
|
73 |
# Translations |
|
|
74 |
*.mo |
|
|
75 |
*.pot |
|
|
76 |
|
|
|
77 |
# Django stuff: |
|
|
78 |
*.log |
|
|
79 |
local_settings.py |
|
|
80 |
|
|
|
81 |
# Flask stuff: |
|
|
82 |
instance/ |
|
|
83 |
.webassets-cache |
|
|
84 |
|
|
|
85 |
# Scrapy stuff: |
|
|
86 |
.scrapy |
|
|
87 |
|
|
|
88 |
# Sphinx documentation |
|
|
89 |
docs/_build/ |
|
|
90 |
|
|
|
91 |
# PyBuilder |
|
|
92 |
target/ |
|
|
93 |
|
|
|
94 |
# Jupyter Notebook |
|
|
95 |
.ipynb_checkpoints |
|
|
96 |
|
|
|
97 |
# pyenv |
|
|
98 |
.python-version |
|
|
99 |
|
|
|
100 |
# celery beat schedule file |
|
|
101 |
celerybeat-schedule |
|
|
102 |
|
|
|
103 |
# SageMath parsed files |
|
|
104 |
*.sage.py |
|
|
105 |
|
|
|
106 |
# dotenv |
|
|
107 |
.env |
|
|
108 |
|
|
|
109 |
# virtualenv |
|
|
110 |
.venv |
|
|
111 |
venv/ |
|
|
112 |
ENV/ |
|
|
113 |
|
|
|
114 |
# Spyder project settings |
|
|
115 |
.spyderproject |
|
|
116 |
.spyproject |
|
|
117 |
|
|
|
118 |
# Rope project settings |
|
|
119 |
.ropeproject |
|
|
120 |
|
|
|
121 |
# mkdocs documentation |
|
|
122 |
/site |
|
|
123 |
|
|
|
124 |
# mypy |
|
|
125 |
.mypy_cache/ |
|
|
126 |
|
|
|
127 |
# ide |
|
|
128 |
.idea |
|
|
129 |
.vscode |