-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (26 loc) · 844 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='django-jsonis',
version='0.1.12',
description='Django JSON Utils',
author='Tomas Rychlik',
author_email='[email protected]',
packages=['jsonis', 'jsonis.templatetags', 'jsonis.jwt'],
license='MIT',
url='https://github.com/rychlis/django-jsonis',
install_requires=[
'Django >= 1.4.0',
'PyJWT'
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)