1# Editor files
2.idea
3.DS_Store
4.vscode/
5
6# Byte-compiled / optimized / DLL files
7__pycache__/
8*.py[cod]
9*$py.class
10*.pyd
11*.pyc
12
13# C extensions
14*.so
15
16# Distribution / packaging
17.Python
18build/
19develop-eggs/
20dist/
21downloads/
22eggs/
23.eggs/
24lib/
25lib64/
26parts/
27sdist/
28var/
29wheels/
30pip-wheel-metadata/
31share/python-wheels/
32*.egg-info/
33.installed.cfg
34*.egg
35MANIFEST
36docs/build
37
38# Unit test / coverage reports
39htmlcov/
40.tox/
41.nox/
42.coverage
43.coverage.*
44.cache
45nosetests.xml
46coverage.xml
47*.cover
48.hypothesis/
49.pytest_cache/
50
51
52# Sphinx documentation
53docs/_build/
54
55# Jupyter Notebook
56.ipynb_checkpoints
57
58# IPython
59profile_default/
60ipython_config.py
61
62# pyenv
63.python-version
64
65# Environments
66.env
67.venv
68env/
69venv/
70ENV/
71env.bak/
72venv.bak/
73
74# mypy
75.mypy_cache/
76.dmypy.json
77dmypy.json
78