-
Notifications
You must be signed in to change notification settings - Fork 106
/
setup.py
33 lines (29 loc) · 947 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
24
25
26
27
28
29
30
31
32
33
from setuptools import setup
import os
from redis_sessions import __version__
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
packages = ['redis_sessions']
setup(
name='django-redis-sessions',
version=__version__,
description= "Redis Session Backend For Django",
long_description=read("README.rst"),
keywords='django, sessions,',
author='Martin Rusev',
author_email='[email protected]',
url='http://github.com/martinrusev/django-redis-sessions',
license='BSD',
packages=packages,
zip_safe=False,
install_requires=['redis>=2.4.10'],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
test_suite='tests'
)