Skip to content

Commit

Permalink
Add RST text and update package to use it
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Kirsche committed Aug 23, 2017
1 parent 2d2fb9f commit b5e98ea
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,23 @@ clean-virtual-environment:
lint:
flake8 --exclude=.tox

build-sdist: clean-build
build-readme:
/usr/bin/env pandoc -s -r markdown -w rst README.md -o README.rst

build-sdist: clean-build build-readme
/usr/bin/env python setup.py sdist

build-wheel: clean-build
build-wheel: clean-build build-readme
pip install -U wheel
/usr/bin/env python setup.py bdist_wheel --universal

wheel: build-wheel build-readme

build-rpm: clean-build
build-rpm: clean-build build-readme
pip install -U wheel
/usr/bin/env python setup.py bdist --format=rpm

build-readme:
/usr/bin/env pandoc -s -r markdown -w rst README.md -o README.rst

release: build-wheel build-readme
release: build-wheel

wheel: build-wheel build-readme
wheel: build-wheel

virtual-environment:
/usr/bin/env python -m virtualenv venv
Expand Down

0 comments on commit b5e98ea

Please sign in to comment.