forked from ChrisNolan1992/torncache-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (24 loc) · 853 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (24 loc) · 853 Bytes
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
#!/usr/bin/env python
# -*- mode: python; coding: utf-8 -*-
from setuptools import setup, find_packages
from torncache import __version__
setup(
name='torncache',
version=__version__,
author=['Charles Gordon', 'David P. Novakovic', 'Carlos Martín'],
author_email='inean.es@gmail.com',
packages=find_packages(),
tests_require=['tornado', 'unittest2'],
install_requires=['tornado'],
test_suite='unittest2.collector',
description='Async driver for memcache and tornado.',
long_description=open('README.md').read(),
license='Apache License 2.0',
url='https://github.com/inean/tornado-memcache',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: Apache Software License',
'Topic :: Database',
],
)