forked from bitly/asyncmongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 891 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 = '1.2.1'
setup(
name="asyncmongo",
version=version,
keywords=["mongo", "mongodb", "pymongo", "asyncmongo", "tornado"],
long_description=open(os.path.join(os.path.dirname(__file__),"README.md"), "r").read(),
description="Asynchronous library for accessing mongodb built upon the tornado IOLoop.",
author="Jehiah Czebotar",
author_email="jehiah@gmail.com",
url="http://github.com/bitly/asyncmongo",
license="Apache Software License",
classifiers=[
"License :: OSI Approved :: Apache Software License",
],
packages=['asyncmongo', 'asyncmongo.backends'],
install_requires=['pymongo>=1.9', 'tornado'],
requires=['pymongo (>=1.9)', 'tornado'],
download_url="http://github.com/downloads/bitly/asyncmongo/asyncmongo-%s.tar.gz" % version,
)