2011-02-19 21:41:23 +03:00
|
|
|
#!/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',
|
2011-02-19 22:00:05 +03:00
|
|
|
packages = ['djangorestframework',
|
|
|
|
'djangorestframework.templatetags',
|
|
|
|
'djangorestframework.tests'],
|
|
|
|
package_dir={'djangorestframework': 'djangorestframework'},
|
|
|
|
package_data = {'djangorestframework': ['templates/*', 'static/*']},
|
2011-02-19 21:41:23 +03:00
|
|
|
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',
|
|
|
|
]
|
2011-02-19 22:00:05 +03:00
|
|
|
)
|
|
|
|
|