forked from dziegler/django-cachebot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (31 loc) · 1019 Bytes
/
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
35
from setuptools import setup, find_packages
import cachebot
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
setup(
name = "django-cachebot",
version = cachebot.__version__,
description = 'Automated caching and invalidation for the Django ORM',
long_description = README,
url = 'http://github.com/dziegler/django-cachebot',
author = 'David Ziegler',
author_email = '[email protected]',
license = 'BSD',
zip_safe = False,
packages = find_packages(),
package_data = {'cachebot':['patches/1-1-1-final-0/*.py']},
install_requires = [
'django==1.1.1',
],
classifiers = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)