[FIX] git and sphinx ignore, remove committed pyc files

This commit is contained in:
Xavier Morel 2015-11-20 11:36:44 +01:00
parent 997861fa51
commit fbea64a257
10 changed files with 17 additions and 2 deletions

9
.gitignore vendored
View File

@ -1,2 +1,9 @@
*.pyc
.*
# sphinx build directories
_build/
_build/
# venv
bin/
include/
lib/

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

10
conf.py
View File

@ -72,7 +72,15 @@ today_fmt = '%B %d, %Y'
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ['_build', 'README.*']
exclude_patterns = [
# build, extensions, statics, templates
'_*',
# translations
'locale',
'README.*',
# virtualenv
'bin', 'include', 'lib',
]
# The reST default role (used for this markup: `text`) to use for all
# documents.