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
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

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

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

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

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

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

# PyBuilder
target/
R
Richard K 已提交
69

70
# Jupyter Notebook
71
.ipynb_checkpoints
72

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

76 77
# celery beat schedule file
celerybeat-schedule
78

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

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

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

# Rope project settings
.ropeproject
97 98

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

# mypy
.mypy_cache/