forked from Rootbuzz/JSONate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (33 loc) · 1020 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
34
35
36
37
38
39
40
41
42
from setuptools import setup
setup(
name='jsonate',
version='0.7.0',
author='James Robert',
author_email='jiaaro@gmail.com',
description=('Django library that can make ANYTHING into json'),
long_description=open('README.markdown').read(),
long_description_content_type="text/markdown",
license='MIT',
keywords='django json templatetags',
url='http://jsonate.com',
install_requires=[
"django>=1.7",
"future >= 0.16.0",
],
packages=[
'jsonate',
'jsonate.templatetags',
],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
]
)