Zask is a framework to work with ZeroRPC. Zask is inspired by Flask, you can consider zask is Flask without WSGI
, Jinja2
and Router
but with ZeroRPC and SQLAlchemy.
$ pip install zask
$ py.test
If you have tox
, then:
$ tox
Follow these steps to release on pypi.
- Create ~/.pypirc with this content. Fill in username and password.
[distutils]
index-servers =
pypi
[pypi]
username:<username>
password:<password>
- Update CHANGES with new version number and describe the changes.
- Set new version number in
zask/__init__.py
- Run
python bin/release.py
- Push release tag to Github
see Changes.
see Authors.