-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
39 lines (35 loc) · 1.09 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
37
38
39
#!/usr/bin/env python
from __future__ import with_statement
import contextlib
import re
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='botornado',
version='0.0.5git',
description='boto on tornado - an asynchronous Amazon Web Service (AWS) client',
author='Yamashita, Yuu',
author_email='peek824545201@gmail.com',
url='https://github.com/yyuu/botornado',
install_requires=[
# "boto==2.2.2", # current version of botornado includes tested version of boto in source tree
"tornado>=2.1.1",
],
packages=find_packages(),
test_suite='botornado.test',
license='MIT',
platforms="Posix; MacOS X; Windows",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet"
],
)
# vim:set ft=python sw=4 :