-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (29 loc) · 777 Bytes
/
setup.py
File metadata and controls
35 lines (29 loc) · 777 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
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
import versionedcache
version = "%d.%d.%d" % versionedcache.VERSION
setup(
name = 'django-versionedcache',
version = version,
description = 'django versioned cache',
long_description = '\n'.join((
'django versioned cache',
'',
'version aware memcache backend for django',
)),
author = 'centrum holdings s.r.o',
license = 'BSD',
packages = find_packages(
where = '.',
exclude = ('docs', 'test_versionedcache')
),
include_package_data = True,
install_requires = [
'setuptools>=0.6b1',
'Django>=1.1',
],
test_requires = [
'nose',
'coverage',
],
test_suite='test_versionedcache.run_tests.run_all'
)