Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
114738ca
Commit
114738ca
authored
Feb 19, 2011
by
tom christie tom@tomchristie.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add setup.py
parent
67c48f75
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
1 deletions
+30
-1
docs/index.rst
+1
-1
setup.py
+29
-0
No files found.
docs/index.rst
View file @
114738ca
...
@@ -13,7 +13,7 @@ Django REST framework aims to make it easy to build well-connected, self-describ
...
@@ -13,7 +13,7 @@ Django REST framework aims to make it easy to build well-connected, self-describ
Features:
Features:
* Automatically provides a Django
A
dmin style `browse-able self-documenting API <http://api.django-rest-framework.org>`_.
* Automatically provides a Django
a
dmin style `browse-able self-documenting API <http://api.django-rest-framework.org>`_.
* Clean, simple, views for Resources, using Django's new `class based views <http://docs.djangoproject.com/en/dev/topics/class-based-views/>`_.
* Clean, simple, views for Resources, using Django's new `class based views <http://docs.djangoproject.com/en/dev/topics/class-based-views/>`_.
* Support for ModelResources with out-of-the-box default implementations and input validation.
* Support for ModelResources with out-of-the-box default implementations and input validation.
* Pluggable :mod:`.emitters`, :mod:`parsers`, :mod:`validators` and :mod:`authenticators` - Easy to customise.
* Pluggable :mod:`.emitters`, :mod:`parsers`, :mod:`validators` and :mod:`authenticators` - Easy to customise.
...
...
setup.py
0 → 100644
View file @
114738ca
#!/usr/bin/env/python
# -*- coding: utf-8 -*-
from
distutils.core
import
setup
setup
(
name
=
"djangorestframework"
,
version
=
"0.1"
,
url
=
'https://bitbucket.org/tomchristie/django-rest-framework/wiki/Home'
,
download_url
=
'https://bitbucket.org/tomchristie/django-rest-framework/downloads'
,
license
=
'BSD'
,
description
=
"A lightweight REST framework for Django."
,
author
=
'Tom Christie'
,
author_email
=
'tom@tomchristie.com'
,
packages
=
[
'djangorestframework'
],
include_package_data
=
True
,
zip_safe
=
False
,
classifiers
=
[
'Development Status :: 4 - Beta'
,
'Environment :: Web Environment'
,
'Framework :: Django'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: BSD License'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python'
,
'Topic :: Internet :: WWW/HTTP'
,
]
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment