diff --git a/.gitignore b/.gitignore index bda6a73f..3076d7d8 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ *.DS_Store *.sass-cache .ruby-version +dist/ bower_components/ node_modules/ npm-debug.log diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..eaca81d8 --- /dev/null +++ b/MANIFEST.in @@ -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 diff --git a/sphinx_rtd_theme/__init__.py b/sphinx_rtd_theme/__init__.py index d27f614d..e1290a87 100644 --- a/sphinx_rtd_theme/__init__.py +++ b/sphinx_rtd_theme/__init__.py @@ -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__