Skip to content

Commit 75a8527

Browse files
author
Emmanouil Konstantinidis
committed
Init MANIFEST.in
1 parent 3223a16 commit 75a8527

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

MANIFEST.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
include README.md
2+
include LICENSE
3+
4+
recursive-include drfdocs/static *.js *.css *.png *.eot *.svg *.ttf *.woff
5+
recursive-include drfdocs/templates *.html
6+
recursive-exclude * __pycache__
7+
recursive-exclude * *.py[co]

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# drf-docs
2-
Documentation for Web APIs made with Django Rest Framework
1+
# drf-docs [![Build Status](https://travis-ci.com/ekonstantinidis/drf-docs.svg?token=9QR4ewbqbkEmHps6q5sq&branch=master)](https://travis-ci.com/ekonstantinidis/drf-docs)
2+
Documentation for Web APIs made with Django Rest Framewor.
33

44

55
### Prerequisites
@@ -12,3 +12,16 @@ Documentation for Web APIs made with Django Rest Framework
1212

1313
pyvenv env
1414
env/bin/pip install -r requirements.txt
15+
16+
### Installation
17+
18+
Install using pip...
19+
20+
pip install drfdocs
21+
22+
Add 'rest_framework' to your INSTALLED_APPS setting.
23+
24+
INSTALLED_APPS = (
25+
...
26+
'drfdocs',
27+
)

0 commit comments

Comments
 (0)