summaryrefslogtreecommitdiff
path: root/Makefile.example
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-01-18 18:41:39 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-01-19 00:18:02 +0100
commit494aada27e305658ce60b0815fd992857222682b (patch)
tree17e9fbf51fc054d18ddcd7fabc87e8684daf4eb4 /Makefile.example
parentf384337ef0d9d2e40d09204f18c4a486e925132c (diff)
downloadIshtar-494aada27e305658ce60b0815fd992857222682b.tar.bz2
Ishtar-494aada27e305658ce60b0815fd992857222682b.zip
Configure for publications on pypi, descriptions, etc.
Diffstat (limited to 'Makefile.example')
-rw-r--r--Makefile.example13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile.example b/Makefile.example
index 967641959..837bc74cd 100644
--- a/Makefile.example
+++ b/Makefile.example
@@ -15,6 +15,7 @@ clean:
-rm -rf *~*
-find . -name '*.pyc' -exec rm {} \;
-find . -name '.*.swp' -exec rm {} \;
+ -rm -rf dist ishtar.egg-info
update: clean syncdb compilemessages collectstatic
@@ -191,3 +192,15 @@ translations_push: makemessages
translations_pull:
zanata-cli pull
+
+readme_md_to_rst:
+ pandoc --from=markdown --to=rst --output=README.rst README.md
+
+sdist: clean
+ $(PYTHON) setup.py sdist
+
+distribute_test: sdist
+ twine upload -r pypitest dist/*
+
+distribute_main: sdist
+ twine upload -r pypi dist/*