Python.gitignore 544 字节
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 21
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
22
.installed.cfg
23
*.egg
24 25 26

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

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

37
# Translations
38 39
*.mo

40
# Mr Developer
41
.mr.developer.cfg
E
Eduard Carreras 已提交
42 43
.project
.pydevproject
V
Visgean Skeloru 已提交
44

K
Kevin Deldycke 已提交
45 46 47
# Rope
.ropeproject

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

# Sphinx documentation
docs/_build/