-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
36 lines (32 loc) · 1.11 KB
/
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
import os
import sys
from setuptools import setup, find_packages
version = '0.6.7'
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
install_requires = [
'tornado>=4.1',
'toro>=0.8'
]
setup(name='asyncmc',
version=version,
description=('Minimal pure python tornado memcached client'),
long_description=read('README.md'),
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Environment :: Web Environment'],
author='Eroshenko Dmitriy',
author_email='[email protected]',
url='https://github.com/ErDmKo/asyncmc/',
license='MIT',
packages=find_packages(),
install_requires = install_requires,
include_package_data = True)