Mitigate Python build directory naming conflict

On Mac and Windows, the default directory name conflicts with the BUILD
file we have.
This commit is contained in:
Masood Malekghassemi 2016-01-28 16:20:46 -08:00
parent 822602cff0
commit 1a54e5cdd5
2 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@ libs
objs
# Python items
python_build/
.coverage*
.eggs
.tox

View File

@ -3,6 +3,9 @@
[coverage:run]
plugins = Cython.Coverage
[build]
build_base=python_build
[build_ext]
inplace=1