Skip to content

Commit

Permalink
New release.
Browse files Browse the repository at this point in the history
  • Loading branch information
illagrenan committed Dec 23, 2015
1 parent 776a8d0 commit 5ac95b6
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 356 deletions.
151 changes: 0 additions & 151 deletions README.md

This file was deleted.

186 changes: 0 additions & 186 deletions README.rst

This file was deleted.

3 changes: 3 additions & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ django
xmltodict
Fabric
colorama
docutils
pypandoc
pygments
coveralls
wheel
nose
Expand Down
23 changes: 23 additions & 0 deletions fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,29 @@ def publish():
green("Published.")


@task()
def test_rst():
local('pandoc --from=markdown --to=rst --output=README.rst README.md')
local('python -m rst2html --output-encoding=\'UTF-8\' README.rst README.html')

green("OK.")


@task()
def publish_test():
if confirm(u'Really publish?', default=False):
local('python setup.py bdist_wheel upload -r https://testpypi.python.org/pypi')

green("Published.")


@task()
def install_test():
local('pip install -i https://testpypi.python.org/pypi ares_util')

green("OK.")


@task()
def publish_insecure():
if confirm(u'Really publish?', default=False):
Expand Down
Loading

0 comments on commit 5ac95b6

Please sign in to comment.