-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 692 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from sys import version_info
from setuptools import setup, find_packages
install_requires = ['httplib2']
if version_info < (2, 7):
install_requires.append('ordereddict')
setup(name='bettercache',
version='0.7',
description = "A suite of better cache tools for Django.",
license = "MIT",
author='Calvin Spealman, Cox Media Group',
author_email='ironfroggy@gmail.com, opensource@coxinc.com',
url='http://github.com/ironfroggy/django-better-cache',
packages = find_packages(),
install_requires = install_requires,
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
]
)