Skip to content

Commit c808d45

Browse files
author
Emmanouil Konstantinidis
committed
Rename Project
1 parent 9ce68c5 commit c808d45

File tree

9 files changed

+10
-11
lines changed

9 files changed

+10
-11
lines changed

README.md

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

54

@@ -22,13 +21,13 @@ Document Web APIs made with Django Rest Framework.
2221

2322
Install using pip:
2423

25-
pip install drfdocs
24+
pip install django-rest-framework-docs
2625

27-
Add 'drfdocs' to your `INSTALLED_APPS` setting:
26+
Add 'rest_framework_docs' to your `INSTALLED_APPS` setting:
2827

2928
INSTALLED_APPS = (
3029
...
31-
'drfdocs',
30+
'rest_framework_docs',
3231
)
3332

3433
Finally include the `drfdocs` urls in your `urls.py`:
@@ -38,8 +37,8 @@ Finally include the `drfdocs` urls in your `urls.py`:
3837
url(r'^docs/', include('drfdocs.urls', app_name='drfdocs', namespace='drfdocs')),
3938
]
4039

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

44-
[pypi-image]: https://img.shields.io/pypi/v/drfdocs.svg
45-
[pypi-url]: https://pypi.python.org/pypi/drffocs/
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/
File renamed without changes.

drfdocs/api_docs.py renamed to rest_framework_docs/api_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from django.conf import settings
22
from django.core.urlresolvers import RegexURLResolver, RegexURLPattern
3-
from drfdocs.api_endpoint import ApiEndpoint
43
from rest_framework.views import APIView
4+
from rest_framework_docs.api_endpoint import ApiEndpoint
55

66

77
class ApiDocumentation(object):
File renamed without changes.
File renamed without changes.

drfdocs/urls.py renamed to rest_framework_docs/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from django.conf.urls import url
2-
from drfdocs.views import DRFDocsView
2+
from rest_framework_docs.views import DRFDocsView
33

44
urlpatterns = [
55
# Url to view the API Docs

drfdocs/views.py renamed to rest_framework_docs/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from django.views.generic.base import TemplateView
2-
from drfdocs.api_docs import ApiDocumentation
2+
from rest_framework_docs.api_docs import ApiDocumentation
33

44

55
class DRFDocsView(TemplateView):

0 commit comments

Comments
 (0)