[FIX] git and sphinx ignore, remove committed pyc files
This commit is contained in:
parent
997861fa51
commit
fbea64a257
9
.gitignore
vendored
9
.gitignore
vendored
@ -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.
Binary file not shown.
10
conf.py
10
conf.py
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user