forked from aerospike-community/aerospike-django-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 790 Bytes
/
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
from setuptools import setup
setup(
name = "django-aerospike-cache",
url = "https://github.com/aerospike/aerospike-django-plugin",
author = "Aerospike",
author_email = "[email protected]",
version = "0.2.0",
packages = ["aerospike_cache"],
description = "Aerospike Cache Backend for Django",
install_requires=['aerospike>=1.0.37',],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
],
)