Python.gitignore 1.1 KB
Newer Older
R
Ray Shan 已提交
1
# Byte-compiled / optimized / DLL files
2
__pycache__/
3
*.py[cod]
4
*$py.class
5 6 7

# C extensions
*.so
8

9
# Distribution / packaging
10
.Python
11 12 13
build/
develop-eggs/
dist/
14
downloads/
15
eggs/
16
.eggs/
17 18 19 20 21
lib/
lib64/
parts/
sdist/
var/
R
Rolando Espinoza 已提交
22
wheels/
23
*.egg-info/
24
.installed.cfg
25
*.egg
26

M
Metallicow 已提交
27
# PyInstaller
M
Mateusz Jagiełło 已提交
28
#  Usually these files are written by a python script from a template
M
Metallicow 已提交
29 30
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
M
Metallicow 已提交
31
*.spec
M
Metallicow 已提交
32

33 34
# Installer logs
pip-log.txt
35
pip-delete-this-directory.txt
36 37

# Unit test / coverage reports
H
hugovk 已提交
38
htmlcov/
39
.tox/
40
.coverage
41
.coverage.*
S
Sam Clements 已提交
42
.cache
43
nosetests.xml
C
Changjian Gao 已提交
44
coverage.xml
Y
Younggun Kim 已提交
45
*.cover
H
Hugo 已提交
46
.hypothesis/
47

48
# Translations
49
*.mo
50
*.pot
K
Kevin Deldycke 已提交
51

C
Carl Suster 已提交
52 53
# Django stuff:
*.log
E
Edson Dota 已提交
54
local_settings.py
J
Jordi Llonch 已提交
55

2
2Cubed 已提交
56
# Flask stuff:
H
Harrison G 已提交
57
instance/
2
2Cubed 已提交
58
.webassets-cache
H
Harrison G 已提交
59

C
Capi Etheriel 已提交
60 61 62
# Scrapy stuff:
.scrapy

J
Jordi Llonch 已提交
63 64
# Sphinx documentation
docs/_build/
65 66 67

# PyBuilder
target/
R
Richard K 已提交
68

69
# Jupyter Notebook
70
.ipynb_checkpoints
71

R
Richard K 已提交
72 73
# pyenv
.python-version
74

75 76
# celery beat schedule file
celerybeat-schedule
77

P
Pedro M. Sosa 已提交
78
# SageMath parsed files
79 80
*.sage.py

81
# Environments
R
roll 已提交
82
.env
M
Max 已提交
83
.venv
84
env/
85 86 87
venv/
ENV/

88 89
# Spyder project settings
.spyderproject
90
.spyproject
G
Greg Trahair 已提交
91 92 93

# Rope project settings
.ropeproject
94 95

# mkdocs documentation
96
/site
B
Brett Cannon 已提交
97 98 99

# mypy
.mypy_cache/