.gitignore 439 Bytes
# ignore virtual environment
.venv

__pycache__/
.DS_Store
demo/ans
demo/students.db

# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info
/*.eggnode_modules

# ignore javascript libraries installed with npm
node_modules/
package-lock.json

# ignore documentation until it is actually written
doc/

# ignore mypy
.mypy_cache/

build/

# files from sublime and other editors
*.sublime-workspace
*.sublime-project