Skip to content

Commit 219fa7d

Browse files
author
Emmanouil Konstantinidis
committed
More changes
1 parent c808d45 commit 219fa7d

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# drf-docs [![travis][travis-image]][travis-url] [![pypi][pypi-image]][pypi-url]
1+
# Django Rest Framework Docs [![travis][travis-image]][travis-url] [![pypi][pypi-image]][pypi-url]
2+
23
Document Web APIs made with Django Rest Framework.
34

45

@@ -21,7 +22,7 @@ Document Web APIs made with Django Rest Framework.
2122

2223
Install using pip:
2324

24-
pip install django-rest-framework-docs
25+
pip install djangorestframeworkdocs
2526

2627
Add 'rest_framework_docs' to your `INSTALLED_APPS` setting:
2728

@@ -30,15 +31,15 @@ Add 'rest_framework_docs' to your `INSTALLED_APPS` setting:
3031
'rest_framework_docs',
3132
)
3233

33-
Finally include the `drfdocs` urls in your `urls.py`:
34+
Finally include the `rest_framework_docs` urls in your `urls.py`:
3435

3536
urlpatterns = [
3637
...
37-
url(r'^docs/', include('drfdocs.urls', app_name='drfdocs', namespace='drfdocs')),
38+
url(r'^docs/', include('rest_framework_docs.urls', app_name='rest_framework_docs', namespace='rest_framework_docs')),
3839
]
3940

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

43-
[pypi-image]: https://img.shields.io/pypi/v/django-rest-framework-docs.svg
44-
[pypi-url]: https://pypi.python.org/pypi/django-rest-framework-docs/
44+
[pypi-image]: https://img.shields.io/pypi/v/djangorestframeworkdocs.svg
45+
[pypi-url]: https://pypi.python.org/pypi/djangorestframeworkdocs/

rest_framework_docs/api_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
class ApiDocumentation(object):
8-
excluded_apps = ["admin", "drfdocs"]
8+
excluded_apps = ["admin", "rest_framework_docs"]
99
excluded_endpoints = ["serve"]
1010

1111
def __init__(self):

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from setuptools import find_packages, setup
22

33
setup(
4-
name="drfdocs",
5-
version=__import__('drfdocs').__version__,
4+
name="djangorestframeworkdocs",
5+
version=__import__('rest_framework_docs').__version__,
66
author="Emmanouil Konstantinidis",
77
author_email="manos@iamemmanouil.com",
88
packages=find_packages(),

0 commit comments

Comments
 (0)