-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (31 loc) · 1.1 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
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
#from distutils.core import setup
version = '0.3.3'
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 :: 4 - Beta',
'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://dev.jmoiron.net/johnny/',
license='MIT',
packages=['johnny', 'johnny.backends'],
scripts=[],
# setuptools specific
zip_safe=False,
)