fix gitignore and docs

This commit is contained in:
Jason Piper
2014-10-19 20:30:39 +01:00
parent 6a417e5bdf
commit e3f283ed6e
17 changed files with 38 additions and 16 deletions
+36 -10
View File
@@ -1,11 +1,37 @@
.idea *.py[cod]
.project
.settings
.pydevproject
MANIFEST
*.pyc
.tox
build/
clint.egg-info/
dist/
# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
lib
lib64
# Installer logs
pip-log.txt
# Unit test / coverage reports
.coverage
.tox
nosetests.xml
# Translations
*.mo
# Mr Developer
.mr.developer.cfg
.project
.pydevproject
*.DS_Store
*.dylib
.idea/
docs/_*
-1
View File
@@ -1 +0,0 @@
_build/*
View File
View File
-3
View File
@@ -1,3 +0,0 @@
*.pyc
*.pyo
.DS_Store
+2 -2
View File
@@ -19,7 +19,7 @@ import clint
# If extensions (or modules to document with autodoc) are in another directory, # If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the # add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here. # documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.append(os.path.abspath('_themes')) sys.path.append(os.path.abspath('themes'))
@@ -104,7 +104,7 @@ html_theme = 'kr'
#html_theme_options = {} #html_theme_options = {}
# Add any paths that contain custom themes here, relative to this directory. # Add any paths that contain custom themes here, relative to this directory.
html_theme_path = ['_themes'] html_theme_path = ['themes']
# The name for this set of Sphinx documents. If None, it defaults to # The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation". # "<project> v<release> documentation".
View File