-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
30 lines (29 loc) · 1016 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
from setuptools import setup
version = '2023.2.0'
readme = open('README.rst').read()
setup(
name='cherrys',
version=version,
description='Redis backend for CherryPy sessions',
long_description=readme,
long_description_content_type='text/x-rst',
py_modules=['cherrys'],
license='MIT',
author='Eugene Van den Bulke',
author_email='eugene.vandenbulke@gmail.com',
url='https://github.com/3kwa/cherrys',
test_suite='test_cherrys',
install_requires=['redis >= 3.5.0', 'cherrypy >= 18.0.0'],
test_requires=['pytest'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: CherryPy',
'Intended Audience :: Developers',
'License :: Freely Distributable',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Database',
'Topic :: Internet :: WWW/HTTP :: Session']
)