-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
42 lines (40 loc) · 1.2 KB
/
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
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-roa',
version='1.8.1',
url='https://github.com/charles-vdulac/django-roa',
download_url='https://github.com/charles-vdulac/django-roa/archive/master.zip',
license='BSD',
description="Turn your models into remote resources that you can access through Django's ORM.",
author='David Larlet',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
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',
],
install_requires=[
'Django',
'restkit',
'wsgiref',
'simplejson',
'djangorestframework'
],
tests_require={
'Piston-tests': ['django-piston'],
}
)