-
Notifications
You must be signed in to change notification settings - Fork 83
/
setup.py
executable file
·33 lines (30 loc) · 1.11 KB
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
#from distutils.core import setup
version = '1.6.1a'
setup(name='johnny-cache',
version=version,
description="Django caching framework that automatically caches all "
"read queries.",
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Framework :: Django',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',],
keywords='django johnny cache',
author='Jason Moiron',
author_email='[email protected]',
url='http://github.com/jmoiron/johnny-cache',
license='MIT',
packages=['johnny', 'johnny.backends'],
scripts=[],
# setuptools specific
zip_safe=False,
)