Python.gitignore 675 字节
Newer Older
R
Ray Shan 已提交
1
# Byte-compiled / optimized / DLL files
2
__pycache__/
3 4 5 6
*.py[cod]

# C extensions
*.so
7

8
# Distribution / packaging
9 10
.Python
env/
11 12 13
build/
develop-eggs/
dist/
14
downloads/
15 16 17 18 19 20 21
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
22
.installed.cfg
23
*.egg
24

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

31 32
# Installer logs
pip-log.txt
33
pip-delete-this-directory.txt
34 35

# Unit test / coverage reports
H
hugovk 已提交
36
htmlcov/
37
.tox/
38
.coverage
S
Sam Clements 已提交
39
.cache
40
nosetests.xml
C
Changjian Gao 已提交
41
coverage.xml
42

43
# Translations
44
*.mo
45
*.pot
K
Kevin Deldycke 已提交
46

C
Carl Suster 已提交
47 48
# Django stuff:
*.log
J
Jordi Llonch 已提交
49 50 51

# Sphinx documentation
docs/_build/
52 53 54

# PyBuilder
target/