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-newcache / setup.py
Size: Mime:
import os

from setuptools import setup

VERSION = '0.2.6'

setup(
    name='django-newcache',
    version=VERSION,
    description='Improved memcached cache backend for Django',
    long_description=file(
        os.path.join(os.path.dirname(__file__), 'README.txt')
    ).read(),
    author='Eric Florenzano',
    author_email='floguy@gmail.com',
    license='BSD',
    url='http://github.com/ericflo/django-newcache',
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'Programming Language :: Python',
        'Topic :: Software Development :: Libraries :: Python Modules',
        'Framework :: Django',
        'Environment :: Web Environment',
    ],
    zip_safe=False,
    py_modules=['newcache'],
)