a b/.gitignore
1
# ignore OpenSim log files
2
err.log
3
out.log
4
5
# MATLAB
6
*.asv
7
8
# VIM files
9
*.*~
10
11
# Byte-compiled / optimized / DLL files
12
__pycache__/
13
*.py[cod]
14
*$py.class
15
16
# C extensions
17
*.so
18
19
# Distribution / packaging
20
.Python
21
build/
22
develop-eggs/
23
dist/
24
downloads/
25
eggs/
26
.eggs/
27
lib/
28
lib64/
29
parts/
30
sdist/
31
var/
32
wheels/
33
share/python-wheels/
34
*.egg-info/
35
.installed.cfg
36
*.egg
37
MANIFEST
38
39
# PyInstaller
40
#  Usually these files are written by a python script from a template
41
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
42
*.manifest
43
*.spec
44
45
# Installer logs
46
pip-log.txt
47
pip-delete-this-directory.txt
48
49
# Unit test / coverage reports
50
htmlcov/
51
.tox/
52
.nox/
53
.coverage
54
.coverage.*
55
.cache
56
nosetests.xml
57
coverage.xml
58
*.cover
59
*.py,cover
60
.hypothesis/
61
.pytest_cache/
62
cover/
63
64
# Translations
65
*.mo
66
*.pot
67
68
# Django stuff:
69
*.log
70
local_settings.py
71
db.sqlite3
72
db.sqlite3-journal
73
74
# Flask stuff:
75
instance/
76
.webassets-cache
77
78
# Scrapy stuff:
79
.scrapy
80
81
# Sphinx documentation
82
docs/_build/
83
84
# PyBuilder
85
.pybuilder/
86
target/
87
88
# Jupyter Notebook
89
.ipynb_checkpoints
90
91
# IPython
92
profile_default/
93
ipython_config.py
94
95
# pyenv
96
#   For a library or package, you might want to ignore these files since the code is
97
#   intended to run in multiple environments; otherwise, check them in:
98
# .python-version
99
100
# pipenv
101
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
102
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
103
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
104
#   install all needed dependencies.
105
#Pipfile.lock
106
107
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
108
__pypackages__/
109
110
# Celery stuff
111
celerybeat-schedule
112
celerybeat.pid
113
114
# SageMath parsed files
115
*.sage.py
116
117
# Environments
118
.env
119
.venv
120
env/
121
venv/
122
ENV/
123
env.bak/
124
venv.bak/
125
126
# Spyder project settings
127
.spyderproject
128
.spyproject
129
130
# Rope project settings
131
.ropeproject
132
133
# mkdocs documentation
134
/site
135
136
# mypy
137
.mypy_cache/
138
.dmypy.json
139
dmypy.json
140
141
# Pyre type checker
142
.pyre/
143
144
# pytype static type analyzer
145
.pytype/
146
147
# Cython debug symbols
148
cython_debug/