-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
25 lines (24 loc) · 1.03 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
from setuptools import setup, find_packages
setup(
name='django-keyedcache3',
version="1.5.4",
description="keyedcache",
long_description="""Python 3 version of Django Keyedcache provides utilities and class mixins for simplified development of cache-aware objects. Used in Satchmo.""",
author='Kunal Deo',
author_email='[email protected]',
url='https://github.com/kunaldeo/django-keyedcache3',
license='New BSD License',
platforms=['any'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django'],
packages=find_packages(),
install_requires=['django>=1.8'],
include_package_data=True,
)