Merge branch 'master' of github.com:snide/sphinx_rtd_theme

This commit is contained in:
Dave Snider 2013-11-04 15:19:16 -08:00
commit 1adca1bd58
3 changed files with 12 additions and 1 deletions

1
.gitignore vendored
View File

@ -7,6 +7,7 @@
*.DS_Store
*.sass-cache
.ruby-version
dist/
bower_components/
node_modules/
npm-debug.log

10
MANIFEST.in Normal file
View File

@ -0,0 +1,10 @@
include *.txt
include LICENSE
recursive-include sphinx_rtd_theme *.conf
recursive-include sphinx_rtd_theme *.css
recursive-include sphinx_rtd_theme *.eot
recursive-include sphinx_rtd_theme *.html
recursive-include sphinx_rtd_theme *.js
recursive-include sphinx_rtd_theme *.svg
recursive-include sphinx_rtd_theme *.ttf
recursive-include sphinx_rtd_theme *.woff

View File

@ -5,7 +5,7 @@ From https://github.com/ryan-roemer/sphinx-bootstrap-theme.
"""
import os
VERSION = (0, 1, 3)
VERSION = (0, 1, 4)
__version__ = ".".join(str(v) for v in VERSION)
__version_full__ = __version__