-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gitignore
67 lines (53 loc) · 1.11 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
# Python
**/.ipynb_checkpoints/
**/.virtual_documents/
**/__pycache__/
**/.pytest_cache/
.venv
ConFlowGen.egg-info
# Editors
**/.vscode/
**/.idea/
# SQLite
*.sqlite-shm
*.sqlite-wal
# Microsoft Office products
**/~$*
# Batch script helper files
*.tmp
.conda_path
# Conflowgen data directory
conflowgen/data/logs/*.log
conflowgen/data/databases/*.sqlite
conflowgen/data/exports/
# Conflowgen documentation
docs/_build/
# Testing
.coverage
# Automatic backup file of Plant Simulation
*.spp.bak
# Merging
*_BACKUP_*
*_BASE_*
*_LOCAL_*
*_REMOTE_*
# Publishing new versions
build/
dist/
.pypirc
# The dirty Read the Docs hack - downloading git-lfs on-the-fly in case it is missing
docs/.tools/
docs/git-lfs*
# Avoid publishing Jupyter Notebooks that were created for tampering
Untitled*.ipynb
# Ignore log files
*.log
docs/notebooks/data/db/
docs/notebooks/data/export/
.coverage.*
examples/Python_Script/export/
examples/Python_Script/databases/
# Ignore local changes as they happen with every execution. If something changes, the commit must be forced.
conflowgen/data/tools/
docs/notebooks/data/prepared_dbs/
.tools/