Python.gitignore 1.7 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
pip-wheel-metadata/
24
share/python-wheels/
25
*.egg-info/
26
.installed.cfg
27
*.egg
S
Shiwei Sun 已提交
28
MANIFEST
29

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

36 37
# Installer logs
pip-log.txt
38
pip-delete-this-directory.txt
39 40

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

53
# Translations
54
*.mo
55
*.pot
K
Kevin Deldycke 已提交
56

C
Carl Suster 已提交
57 58
# Django stuff:
*.log
E
Edson Dota 已提交
59
local_settings.py
60
db.sqlite3
J
Jordi Llonch 已提交
61

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

C
Capi Etheriel 已提交
66 67 68
# Scrapy stuff:
.scrapy

J
Jordi Llonch 已提交
69 70
# Sphinx documentation
docs/_build/
71 72 73

# PyBuilder
target/
R
Richard K 已提交
74

75
# Jupyter Notebook
76
.ipynb_checkpoints
77

A
amigcamel 已提交
78
# IPython
79
profile_default/
A
amigcamel 已提交
80 81
ipython_config.py

R
Richard K 已提交
82 83
# pyenv
.python-version
84

J
Jarry Shaw 已提交
85 86 87
# pipenv
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
88
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
J
Jarry Shaw 已提交
89 90 91
#   install all needed dependencies.
#Pipfile.lock

92 93
# celery beat schedule file
celerybeat-schedule
94

P
Pedro M. Sosa 已提交
95
# SageMath parsed files
96 97
*.sage.py

98
# Environments
R
roll 已提交
99
.env
M
Max 已提交
100
.venv
101
env/
102 103
venv/
ENV/
J
jwg4 已提交
104 105
env.bak/
venv.bak/
106

107 108
# Spyder project settings
.spyderproject
109
.spyproject
G
Greg Trahair 已提交
110 111 112

# Rope project settings
.ropeproject
113 114

# mkdocs documentation
115
/site
B
Brett Cannon 已提交
116 117 118

# mypy
.mypy_cache/
119
.dmypy.json
120
dmypy.json
121 122 123

# Pyre type checker
.pyre/