pip install django-cte
The django-cte documentation shows how to use Common Table Expressions with the Django ORM.
cd django-cte
mkvirtualenv cte # or however you choose to setup your environment
pip install django pynose flake8
nosetests
flake8 --config=setup.cfg
All feature and bug contributions are expected to be covered by tests.
Package and upload the generated files. This assumes the django-cte
repository
has been configured in ~/.pypirc
.
pip install -r pkg-requires.txt
python setup.py sdist bdist_wheel
twine upload --repository=django-cte dist/*