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
56 57
.static_storage/
.media/
E
Edson Dota 已提交
58
local_settings.py
J
Jordi Llonch 已提交
59

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

C
Capi Etheriel 已提交
64 65 66
# Scrapy stuff:
.scrapy

J
Jordi Llonch 已提交
67 68
# Sphinx documentation
docs/_build/
69 70 71

# PyBuilder
target/
R
Richard K 已提交
72

73
# Jupyter Notebook
74
.ipynb_checkpoints
75

R
Richard K 已提交
76 77
# pyenv
.python-version
78

79 80
# celery beat schedule file
celerybeat-schedule
81

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

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

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

# Rope project settings
.ropeproject
100 101

# mkdocs documentation
102
/site
B
Brett Cannon 已提交
103 104 105

# mypy
.mypy_cache/