Python.gitignore 1.2 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
S
Shiwei Sun 已提交
26
MANIFEST
27

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

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

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

50
# Translations
51
*.mo
52
*.pot
K
Kevin Deldycke 已提交
53

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

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

C
Capi Etheriel 已提交
62 63 64
# Scrapy stuff:
.scrapy

J
Jordi Llonch 已提交
65 66
# Sphinx documentation
docs/_build/
67 68 69

# PyBuilder
target/
R
Richard K 已提交
70

71
# Jupyter Notebook
72
.ipynb_checkpoints
73

R
Richard K 已提交
74 75
# pyenv
.python-version
76

77 78
# celery beat schedule file
celerybeat-schedule
79

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

83
# Environments
R
roll 已提交
84
.env
M
Max 已提交
85
.venv
86
env/
87 88
venv/
ENV/
J
jwg4 已提交
89 90
env.bak/
venv.bak/
91

92 93
# Spyder project settings
.spyderproject
94
.spyproject
G
Greg Trahair 已提交
95 96 97

# Rope project settings
.ropeproject
98 99

# mkdocs documentation
100
/site
B
Brett Cannon 已提交
101 102 103

# mypy
.mypy_cache/