-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (36 loc) · 1.25 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
import sys, os
version = '0.0'
setup(name='IPyMongo',
version=version,
description="IPython extension and wrapper for using with MongoDB",
long_description="""This module installs the ipymongo script and IPython
extension, which allows you to use the following new magic commands in IPython:
- use <database>
- connect [ <mongodb uri> ]
- login [ <username> <password> ]
You also get access to the following global variables:
- db (current database)
- conn (current mongodb connection)
Your prompt is also updated to show the current database name.
The ipymongo command takes an optional mongodb:// uri. If not supplied, it will
connect to mongodb://localhost:27017/test.
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Rick Copeland',
author_email='[email protected]',
url='',
license='Apache',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
scripts=['scripts/ipymongo'],
install_requires=[
'ipython',
'pymongo'
],
entry_points="""
# -*- Entry points: -*-
""",
)