forked from samuraisam/django-json-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.57 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
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
HERE = os.path.dirname(os.path.abspath(__file__))
setup(
name="django-json-rpc",
version="0.7.1",
description="A simple JSON-RPC implementation for Django",
long_description=open(os.path.join('README.mdown')).read(),
author="Samuel Sutch",
author_email="[email protected]",
license="MIT",
url="http://github.com/samuraisam/django-json-rpc/tree/master",
download_url="http://github.com/samuraisam/django-json-rpc/tree/master",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent', 'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django', 'Framework :: Django :: 1.4',
'Framework :: Django :: 1.5', 'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7', 'Framework :: Django :: 1.8'
],
packages=['jsonrpc'],
zip_safe=False, # we include templates and tests
install_requires=['Django>=1.0', 'six'],
package_data={'jsonrpc': ['templates/*']})