https://github.com/webyneter/dp
https://github.com/webyneter/dp
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/webyneter/dp
- Owner: webyneter
- License: mit
- Created: 2018-06-06T07:17:50.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-06T08:48:38.000Z (about 8 years ago)
- Last Synced: 2025-01-27T09:41:35.221Z (over 1 year ago)
- Language: Python
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
=============================
dp
=============================
.. image:: https://badge.fury.io/py/dp.svg
:target: https://badge.fury.io/py/dp
.. image:: https://travis-ci.org/webyneter/dp.svg?branch=master
:target: https://travis-ci.org/webyneter/dp
.. image:: https://codecov.io/gh/webyneter/dp/branch/master/graph/badge.svg
:target: https://codecov.io/gh/webyneter/dp
dp
Documentation
-------------
The full documentation is at https://dp.readthedocs.io.
Quickstart
----------
Install dp::
pip install dp
Add it to your `INSTALLED_APPS`:
.. code-block:: python
INSTALLED_APPS = (
...
'dp.apps.DpConfig',
...
)
Add dp's URL patterns:
.. code-block:: python
from dp import urls as dp_urls
urlpatterns = [
...
url(r'^', include(dp_urls)),
...
]
Features
--------
* TODO
Running Tests
-------------
Does the code actually work?
::
source /bin/activate
(myenv) $ pip install tox
(myenv) $ tox
Credits
-------
Tools used in rendering this package:
* Cookiecutter_
* `cookiecutter-djangopackage`_
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage