forked from ahopkins/sanic-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 814 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
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
long_description = ''
setup(
name='sanic_session',
version='0.1.3',
description='Provides server-backed sessions for Sanic using Redis, Memcache and more.',
long_description=long_description,
url='http://github.com/subyraman/sanic_session',
author='Suby Raman',
license='MIT',
packages=['sanic_session'],
install_requires=('sanic', 'ujson'),
zip_safe=False,
keywords=['sessions', 'sanic', 'redis', 'memcache'],
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP :: Session',
]
)