aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: a47ab80beae7853357135d22b292c869c57d5cff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env/python
# -*- coding: utf-8 -*-

from setuptools import setup

import os, re

path = os.path.join(os.path.dirname(__file__), 'djangorestframework', '__init__.py')
init_py = open(path).read()
VERSION = re.match("__version__ = '([^']+)'", init_py).group(1)

setup(
    name = 'djangorestframework',
    version = VERSION,
    url = 'http://django-rest-framework.org',
    download_url = 'http://pypi.python.org/pypi/djangorestframework/',
    license = 'BSD',
    description = 'A lightweight REST framework for Django.',
    author = 'Tom Christie',
    author_email = 'tom@tomchristie.com',
    packages = ['djangorestframework',
                'djangorestframework.templatetags',
                'djangorestframework.tests',
                'djangorestframework.runtests'],
    package_dir={'djangorestframework': 'djangorestframework'},
    package_data = {'djangorestframework': ['templates/*', 'static/*']},
    test_suite = 'djangorestframework.runtests.runcoverage.main',
    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',
    ]
)