diff options
| author | tom christie tom@tomchristie.com | 2011-02-19 18:41:23 +0000 |
|---|---|---|
| committer | tom christie tom@tomchristie.com | 2011-02-19 18:41:23 +0000 |
| commit | 114738ca721b3fd90cb0b00b4fde3b61d3bd93dc (patch) | |
| tree | 834afcf7aaaf2b6b25d54e6ced99de7719334fb4 /setup.py | |
| parent | 67c48f758f3a3aa435e4f2ccf41764ae596447fb (diff) | |
| download | django-rest-framework-114738ca721b3fd90cb0b00b4fde3b61d3bd93dc.tar.bz2 | |
Add setup.py
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..8225e98b --- /dev/null +++ b/setup.py @@ -0,0 +1,28 @@ +#!/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 |
