master
text 48 lines 520 Bytes
Raw
1 # Virtual environment
2 venv/
3 env/
4 ENV/
5 .env/
6 .venv/
7
8 # Generated pip files
9 requirements.txt
10 pip-log.txt
11
12 # Byte-compiled / optimized / DLL files
13 __pycache__/
14 *.py[cod]
15 *$py.class
16 *.so
17 .Python
18
19 # Distribution / packaging
20 dist/
21 build/
22 *.egg-info/
23 .installed.cfg
24 *.egg
25
26 # Unit test / coverage reports
27 htmlcov/
28 .tox/
29 .coverage
30 .coverage.*
31 .cache
32 nosetests.xml
33 coverage.xml
34 *.cover
35 .hypothesis/
36
37 # Jupyter Notebook
38 .ipynb_checkpoints
39
40 # IDE specific files
41 .idea/
42 .vscode/
43 *.swp
44 *.swo
45 *~
46 .spyderproject
47 .spyproject
48 .ropeproject