Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 681 Bytes

CONTRIBUTING.rst

File metadata and controls

30 lines (21 loc) · 681 Bytes

Contributing

Manual installation

For development in a virtualenv, git clone this project and then:

$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -e .
$ pip install djangorestframework docutils

djangorestframework and docutils are not required but useful if you want a REST API and a documentation in Django Admin.

Package to pip

To package a new version to pip:

$ source venv/bin/activate
$ pip install setuptools wheel twine
$ cd dnsmanager && django-admin compilemessages && cd ..
$ python setup.py sdist bdist_wheel
$ twine upload dist/*