-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (29 loc) · 858 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
34
35
36
from setuptools import setup
version = '1.1.0'
description = 'Beaker backend for redis'
with open('README.rst') as f:
long_description = f.read()
setup(
name='beaker_redis',
version=version,
description=description,
long_description=long_description,
author='Zelenyak "ZZZ" Aleksander',
author_email='[email protected]',
url='https://github.com/zzzsochi/beaker_redis',
license='BSD',
platforms='any',
install_requires=['beaker', 'redis'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
py_modules=['beaker_redis'],
entry_points={
'beaker.backends': [
'redis = beaker_redis:RedisBackend',
],
},
)