forked from django-tastypie/django-tastypie
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (32 loc) · 890 Bytes
/
setup.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='django-tastypie',
version='0.9.5',
description='A flexible & capable API layer for Django.',
author='Daniel Lindsley',
author_email='[email protected]',
url='http://github.com/toastdriven/django-tastypie/',
packages=[
'tastypie',
'tastypie.utils',
],
package_data={
'tastypie': ['templates/tastypie/*'],
},
requires=[
'mimeparse',
'python_dateutil',
],
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 :: Utilities'
],
)