Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
django-json-field / setup.py
Size: Mime:
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',
    ],
)