Python.gitignore 451 字节
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
29
.tox/
30
.coverage
S
Sam Clements 已提交
31
.cache
32
nosetests.xml
C
Changjian Gao 已提交
33
coverage.xml
34

35
# Translations
36
*.mo
37
*.pot
38

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

# Sphinx documentation
docs/_build/