File tree Expand file tree Collapse file tree 4 files changed +30
-2
lines changed Expand file tree Collapse file tree 4 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 1+ language : python
2+
3+ python :
4+ - " 3.3"
5+ - " 3.4"
6+ - " 3.5"
7+
8+ install :
9+ - pip install -r requirements.txt
10+
11+ script :
12+ - scripts/runtests
Original file line number Diff line number Diff line change 11# drf-docs
2- Documention for Web APIs made with Django Rest Framework
2+ Documentation for Web APIs made with Django Rest Framework
33
44
55### Prerequisites
66
7- - Python 3.5
7+ - Python (3.3, 3.4, 3.5)
8+ - Django (1.8, 1.9)
89
910
1011### Development
Original file line number Diff line number Diff line change 1+ from distutils .core import setup
2+
3+ setup (
4+ name = "drf-docs" ,
5+ version = "0.0.1" ,
6+ author = "Emmanouil Konstantinidis" ,
7+ author_email = "manos@iamemmanouil.com" ,
8+ packages = ["drfdocs" ],
9+ include_package_data = True ,
10+ url = "http://www.drfdocs.com" ,
11+ license = 'BSD' ,
12+ description = "Documentation for Web APIs made with Django Rest Framework." ,
13+ long_description = open ("README.txt" ).read (),
14+ install_requires = [],
15+ )
You can’t perform that action at this time.
0 commit comments