Python.gitignore 460 字节
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 14 15 16 17 18 19 20
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
21
.installed.cfg
22
*.egg
23 24 25

# Installer logs
pip-log.txt
26
pip-delete-this-directory.txt
27 28

# Unit test / coverage reports
H
hugovk 已提交
29
htmlcov/
30
.tox/
31
.coverage
S
Sam Clements 已提交
32
.cache
33
nosetests.xml
C
Changjian Gao 已提交
34
coverage.xml
35

36
# Translations
37
*.mo
38
*.pot
K
Kevin Deldycke 已提交
39

C
Carl Suster 已提交
40 41
# Django stuff:
*.log
J
Jordi Llonch 已提交
42 43 44

# Sphinx documentation
docs/_build/