Repository URL to install this package:
|
Version:
0.6.0-doordash ▾
|
django-json-field
/
setup.py
|
|---|
from setuptools import setup
description = 'Generic JSON model and form fields.'
try:
with open('README.rst') as f:
long_description = f.read()
except IOError:
long_description = description
setup(
name = 'django-json-field',
version = '0.6.0-doordash',
description = description,
author = 'Derek Schaefer',
author_email = 'derek.schaefer@gmail.com',
url = 'https://github.com/derek-schaefer/django-json-field',
long_description = long_description,
packages = ['json_field'],
install_requires = ['django >= 1.2.7', 'python-dateutil', 'six >= 1.2.0'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)