Python.gitignore 727 字节
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 30
# 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

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

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

42
# Translations
43 44
*.mo

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

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

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

# Sphinx documentation
docs/_build/