diff --git a/.travis.yml b/.travis.yml index 35e4613..066bed4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ python: - 3.6 install: -- pip install -r requirements.txt - pip install tox script: @@ -11,6 +10,7 @@ script: deploy: provider: pypi + distributions: "sdist bdist_wheel" user: alcarney skip_cleanup: true password: diff --git a/CHANGES.rst b/CHANGES.rst new file mode 100644 index 0000000..04634e7 --- /dev/null +++ b/CHANGES.rst @@ -0,0 +1,13 @@ +v0.1.1 - 2018-10-28 +------------------- + +Fixed +^^^^^ + +- Don't require users to have docutils available at the time of pip installing + the package + +v0.1.0 - 2018-10-28 +------------------- + +Initial Release diff --git a/README.md b/README.md index d5897bb..94e0c1c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,12 @@ # Sphinx-Stylo +| | | +|:--:|--| +|**Project** | [![PyPI - License](https://img.shields.io/pypi/l/sphinx-stylo.svg)](https://opensource.org/licenses/MIT)| +|**Code**| [![Build Status](https://travis-ci.org/alcarney/sphinx-stylo.svg?branch=develop)](https://travis-ci.org/alcarney/sphinx-stylo) | +|**PyPi**|[![PyPI](https://img.shields.io/pypi/v/sphinx-stylo.svg)](https://pypi.org/project/sphinx-stylo)| + + **It is extremely early stages for this extension. It is not likely to be robust** Sphinx-Stylo is an extension to the [Sphinx](http://www.sphinx-doc.org/en/master/) @@ -49,4 +56,4 @@ extensions = [ ... "sphinx_stylo" ] -``` \ No newline at end of file +``` diff --git a/setup.py b/setup.py index fca89ff..0612eb3 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -from sphinx_stylo import __version__ +exec(open("sphinx_stylo/_version.py").read()) def readme(): diff --git a/sphinx_stylo/_version.py b/sphinx_stylo/_version.py index 3dc1f76..485f44a 100644 --- a/sphinx_stylo/_version.py +++ b/sphinx_stylo/_version.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.1.1"