Skip to content

Rename Pypi Package #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 18, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ __pycache__/
env/
demo/db.sqlite3
dist/
djangorestframeworkdocs.egg-info/
drfdocs.egg-info/

rest_framework_docs/static/node_modules/
15 changes: 3 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Included in this repo you can find the demo project(at `/demo`). It is a project

Install using pip:

pip install djangorestframeworkdocs
pip install drfdocs

Add 'rest_framework_docs' to your `INSTALLED_APPS` setting:

Expand All @@ -48,21 +48,12 @@ Finally include the `rest_framework_docs` urls in your `urls.py`:
}


### Roadmap

- [ ] Creade demo app
- [ ] Support Python 2 & Python 3
- [ ] Support DRF 3+
- [ ] Open Pull Request to include in DRF
- [ ] Submit to djangopackages.com


### Credits

First of all thanks to the [Django](http://www.djangoproject.com/) core team and to all the contributors of [Django REST Framework](http://www.django-rest-framework.org/) for their amazing work. Also I would like to thank [Marc Gibbons](https://github.com/marcgibbons) for his *django-rest-framework-docs* project. Both projects share the same idea, it is just that Marc's is not maintained anymore and does not support DRF 3+ & Python 3.

[travis-image]: https://travis-ci.com/ekonstantinidis/django-rest-framework-docs.svg?token=9QR4ewbqbkEmHps6q5sq&branch=master
[travis-url]: https://travis-ci.com/ekonstantinidis/django-rest-framework-docs

[pypi-image]: https://img.shields.io/pypi/v/djangorestframeworkdocs.svg
[pypi-url]: https://pypi.python.org/pypi/djangorestframeworkdocs/
[pypi-image]: https://img.shields.io/pypi/v/drfdocs.svg
[pypi-url]: https://pypi.python.org/pypi/drfdocs/
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup

setup(
name="djangorestframeworkdocs",
name="drfdocs",
version=__import__('rest_framework_docs').__version__,
author="Emmanouil Konstantinidis",
author_email="manos@iamemmanouil.com",
Expand Down