Python.gitignore 734 字节
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

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

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

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

43
# Translations
44 45
*.mo

46
# Mr Developer
47
.mr.developer.cfg
E
Eduard Carreras 已提交
48 49
.project
.pydevproject
V
Visgean Skeloru 已提交
50

K
Kevin Deldycke 已提交
51 52 53
# Rope
.ropeproject

C
Carl Suster 已提交
54 55 56
# Django stuff:
*.log
*.pot
J
Jordi Llonch 已提交
57 58 59 60

# Sphinx documentation
docs/_build/