diff --git a/.gitignore b/.gitignore index d7a8809..bf54ee8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,37 @@ -.idea -.project -.settings -.pydevproject -MANIFEST -*.pyc -.tox -build/ -clint.egg-info/ -dist/ +*.py[cod] +# 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/_* diff --git a/docs/.gitignore b/docs/.gitignore deleted file mode 100644 index 88f9974..0000000 --- a/docs/.gitignore +++ /dev/null @@ -1 +0,0 @@ -_build/* diff --git a/docs/_static/test b/docs/_static/test deleted file mode 100644 index e69de29..0000000 diff --git a/docs/_templates/test b/docs/_templates/test deleted file mode 100644 index e69de29..0000000 diff --git a/docs/_themes/.gitignore b/docs/_themes/.gitignore deleted file mode 100644 index 66b6e4c..0000000 --- a/docs/_themes/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -*.pyc -*.pyo -.DS_Store diff --git a/docs/conf.py b/docs/conf.py index 69fb6e5..1e6ae1a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ import clint # 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 # 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 = {} # 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 # " v documentation". diff --git a/docs/_themes/LICENSE b/docs/themes/LICENSE similarity index 100% rename from docs/_themes/LICENSE rename to docs/themes/LICENSE diff --git a/docs/_themes/README.rst b/docs/themes/README.rst similarity index 100% rename from docs/_themes/README.rst rename to docs/themes/README.rst diff --git a/docs/_themes/flask_theme_support.py b/docs/themes/flask_theme_support.py similarity index 100% rename from docs/_themes/flask_theme_support.py rename to docs/themes/flask_theme_support.py diff --git a/docs/_themes/kr/layout.html b/docs/themes/kr/layout.html similarity index 100% rename from docs/_themes/kr/layout.html rename to docs/themes/kr/layout.html diff --git a/docs/_themes/kr/relations.html b/docs/themes/kr/relations.html similarity index 100% rename from docs/_themes/kr/relations.html rename to docs/themes/kr/relations.html diff --git a/docs/_themes/kr/static/flasky.css_t b/docs/themes/kr/static/flasky.css_t similarity index 100% rename from docs/_themes/kr/static/flasky.css_t rename to docs/themes/kr/static/flasky.css_t diff --git a/docs/_themes/kr/static/small_flask.css b/docs/themes/kr/static/small_flask.css similarity index 100% rename from docs/_themes/kr/static/small_flask.css rename to docs/themes/kr/static/small_flask.css diff --git a/docs/_themes/kr/theme.conf b/docs/themes/kr/theme.conf similarity index 100% rename from docs/_themes/kr/theme.conf rename to docs/themes/kr/theme.conf diff --git a/docs/_themes/kr_small/layout.html b/docs/themes/kr_small/layout.html similarity index 100% rename from docs/_themes/kr_small/layout.html rename to docs/themes/kr_small/layout.html diff --git a/docs/_themes/kr_small/static/flasky.css_t b/docs/themes/kr_small/static/flasky.css_t similarity index 100% rename from docs/_themes/kr_small/static/flasky.css_t rename to docs/themes/kr_small/static/flasky.css_t diff --git a/docs/_themes/kr_small/theme.conf b/docs/themes/kr_small/theme.conf similarity index 100% rename from docs/_themes/kr_small/theme.conf rename to docs/themes/kr_small/theme.conf