forked from courtneywmorris/mongo-connector-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (18 loc) · 808 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
# coding: utf8
from setuptools import setup
setup(
name='mongo-connector-postgresql',
version='1.3.1',
description='Doc Manager Postgresl for Mongo connector Distribution Utilities',
keywords=['mongo-connector', 'mongo', 'mongodb', 'postgresql'],
platforms=["any"],
author=u'Hugo Lassiège, Maxime Gaudin',
author_email='hugo@hopwork.com, maxime@hopwork.com',
install_requires=['mongo_connector >= 2.4', 'psycopg2 >= 2.6.1', 'future >= 0.16.0'],
tests_require=['mock>=2.0.0'],
license="http://www.apache.org/licenses/LICENSE-2.0.html",
url='https://github.com/Hopwork/mongo-connector-postgresql',
packages=["mongo_connector", "mongo_connector.doc_managers"],
test_suite='tests'
)