forked from alonho/pql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 929 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
from setuptools import setup
__version__ = '0.5.0'
setup(name='pql',
version=__version__,
description='A python expression to MongoDB query translator',
author='Alon Horev',
author_email='[email protected]',
url='https://github.com/alonho/pql',
classifiers = ["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.5",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X"],
license='BSD',
# I know it's bad practice to not specify a pymongo version, but we only
# require the bson.ObjectId type, It's safe to assume it won't change (famous last words)
install_requires=['pymongo',
'python-dateutil'],
packages=['pql'])