forked from dimagi/quickcache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 761 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 761 Bytes
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
#!/usr/bin/env python
from __future__ import absolute_import
from __future__ import unicode_literals
from setuptools import setup
setup(
name='quickcache',
version='0.5.2',
description='caching has never been easier',
author='Dimagi',
author_email='dev@dimagi.com',
url='https://github.com/dimagi/quickcache',
packages=['quickcache'],
test_suite='test_quickcache',
install_requires=[
'six==1.11.0',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)