-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
executable file
·29 lines (27 loc) · 948 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
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '0.3.0'
setup(name='pycket',
version=version,
description="Redis/Memcached sessions for Tornado",
long_description="Redis/Memcached sessions for Tornado (see GitHub page for more info)",
classifiers=['Topic :: Internet :: WWW/HTTP :: Session',
'Topic :: Database',
],
keywords='pycket redis memcached tornado session python',
author='Diogo Baeder',
author_email='[email protected]',
url='https://github.com/diogobaeder/pycket',
license='BSD 2-Clause',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
'tornado',
],
entry_points="""
# -*- Entry points: -*-
""",
test_suite="nose.collector",
tests_require="nose",
)