forked from kapilt/mongoqueue
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 690 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(name='mongoqueue',
version="0.7.2",
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent'],
author='Kapil Thangavelu',
author_email='kapil.foss@gmail.com',
description="A queue using mongo as backend storage.",
long_description=open("README.rst").read(),
url='http://github.com/kapilt/mongoqueue',
license='BSD-derived',
packages=find_packages(),
install_requires=["pymongo"],
setup_requires=["nose", "mongonose"],
include_package_data=True,
zip_safe=True,
)