forked from peterbe/django-cache-memoize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.09 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
from os import path
from setuptools import setup, find_packages
_here = path.dirname(__file__)
setup(
name='django-cache-memoize',
version='0.1.2',
description=(
'Django utility for a memoization decorator that uses the Django '
'cache framework.'
),
long_description=open(path.join(_here, 'README.rst')).read(),
author='Peter Bengtsson',
author_email='mail@peterbe.com',
license='MPL 2.0',
url='https://github.com/peterbe/django-cache-memoize',
packages=find_packages(where='src'),
package_dir={'': 'src'},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment :: Mozilla',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
],
keywords=['django', 'memoize', 'cache', 'decorator'],
zip_safe=False,
)