.gitignore review

This commit is contained in:
Alexander 2018-03-31 14:19:27 +03:00
parent 9386a414fc
commit a3e4ff652f
2 changed files with 22 additions and 18 deletions

38
.gitignore vendored
View File

@ -1,25 +1,26 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
/*.py[cod]
/src/PIL/*.py[cod]
/Tests/*.py[cod]
# C extensions
*.so
/src/PIL/*.so
# Distribution / packaging
/build/
/dist/
/src/*.egg-info/
/env/
.eggs/
.Python
env/
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
@ -35,8 +36,18 @@ htmlcov/
nosetests.xml
coverage.xml
# Test files
test_images
# Extra test images installed from pillow-depends/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
*.mo
@ -53,9 +64,6 @@ test_images
*.log
*.pot
# Sphinx documentation
docs/_build/
# Vim cruft
.*.swp
@ -72,9 +80,3 @@ docs/_build/
# JetBrains
.idea
# Extra test images installed from pillow-depends/test_images
Tests/images/README.md
Tests/images/msp
Tests/images/picins
Tests/images/sunraster

View File

@ -7,3 +7,5 @@ rm -r test_images
svn checkout https://github.com/python-pillow/pillow-depends/trunk/test_images
cp -r test_images/* ../Tests/images
rm -r test_images