mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-08-22 05:04:46 +03:00
.gitignore review
This commit is contained in:
parent
9386a414fc
commit
a3e4ff652f
38
.gitignore
vendored
38
.gitignore
vendored
|
@ -1,25 +1,26 @@
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
/*.py[cod]
|
||||||
|
/src/PIL/*.py[cod]
|
||||||
|
/Tests/*.py[cod]
|
||||||
|
|
||||||
# C extensions
|
# C extensions
|
||||||
*.so
|
/src/PIL/*.so
|
||||||
|
|
||||||
# Distribution / packaging
|
# Distribution / packaging
|
||||||
|
/build/
|
||||||
|
/dist/
|
||||||
|
/src/*.egg-info/
|
||||||
|
/env/
|
||||||
.eggs/
|
.eggs/
|
||||||
.Python
|
.Python
|
||||||
env/
|
|
||||||
bin/
|
|
||||||
build/
|
|
||||||
develop-eggs/
|
develop-eggs/
|
||||||
dist/
|
|
||||||
eggs/
|
eggs/
|
||||||
lib/
|
lib/
|
||||||
lib64/
|
lib64/
|
||||||
parts/
|
parts/
|
||||||
sdist/
|
sdist/
|
||||||
var/
|
var/
|
||||||
*.egg-info/
|
|
||||||
.installed.cfg
|
.installed.cfg
|
||||||
*.egg
|
*.egg
|
||||||
|
|
||||||
|
@ -35,8 +36,18 @@ htmlcov/
|
||||||
nosetests.xml
|
nosetests.xml
|
||||||
coverage.xml
|
coverage.xml
|
||||||
|
|
||||||
# Test files
|
# Extra test images installed from pillow-depends/test_images
|
||||||
test_images
|
/depends/test_images
|
||||||
|
/Tests/images/README.md
|
||||||
|
/Tests/images/msp
|
||||||
|
/Tests/images/picins
|
||||||
|
/Tests/images/sunraster
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
/docs/_build/
|
||||||
|
|
||||||
|
|
||||||
|
# Common ignores
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
*.mo
|
*.mo
|
||||||
|
@ -53,9 +64,6 @@ test_images
|
||||||
*.log
|
*.log
|
||||||
*.pot
|
*.pot
|
||||||
|
|
||||||
# Sphinx documentation
|
|
||||||
docs/_build/
|
|
||||||
|
|
||||||
# Vim cruft
|
# Vim cruft
|
||||||
.*.swp
|
.*.swp
|
||||||
|
|
||||||
|
@ -72,9 +80,3 @@ docs/_build/
|
||||||
|
|
||||||
# JetBrains
|
# JetBrains
|
||||||
.idea
|
.idea
|
||||||
|
|
||||||
# Extra test images installed from pillow-depends/test_images
|
|
||||||
Tests/images/README.md
|
|
||||||
Tests/images/msp
|
|
||||||
Tests/images/picins
|
|
||||||
Tests/images/sunraster
|
|
||||||
|
|
|
@ -7,3 +7,5 @@ rm -r test_images
|
||||||
svn checkout https://github.com/python-pillow/pillow-depends/trunk/test_images
|
svn checkout https://github.com/python-pillow/pillow-depends/trunk/test_images
|
||||||
|
|
||||||
cp -r test_images/* ../Tests/images
|
cp -r test_images/* ../Tests/images
|
||||||
|
|
||||||
|
rm -r test_images
|
||||||
|
|
Loading…
Reference in New Issue
Block a user