forked from bitly/asyncdynamo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 812 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
import os
from distutils.core import setup
# also update version in __init__.py
version = '0.2.8'
setup(
name="asyncdynamo",
version=version,
keywords=["dynamo", "dynamodb", "amazon", "async", "tornado"],
long_description=open(os.path.join(os.path.dirname(__file__), "README.md"), "r").read(),
description="async Amazon DynamoDB library for Tornado",
author="Dan Frank",
author_email="[email protected]",
url="http://github.com/bitly/asyncdynamo",
license="Apache Software License",
classifiers=[
"License :: OSI Approved :: Apache Software License",
],
packages=['asyncdynamo'],
install_requires=['tornado', 'boto>=2.3.0'],
requires=['tornado'],
download_url="https://s3.amazonaws.com/bitly-downloads/asyncdynamo/asyncdynamo-%s.tar.gz" % version,
)