-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (28 loc) · 905 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
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
import os
import sys
if sys.version < '2.6':
print 'Python >= 2.6 required'
sys.exit(1)
from setuptools import setup
if os.path.isfile('README.rst'):
long_description = open('README.rst').read()
else:
long_description = '''A lazy BSON file loader that leverages PyMongo's
built-in BSON decoder. Comes with a bson2json utility.'''
setup(
name='bson_lazy',
version='0.2.4',
author='Raynor Vliegendhart, Rick van Hattem',
author_email='ShinNoNoir@gmail.com, Rick.van.Hattem@Fawo.nl',
url='https://github.com/ShinNoNoir/bson_lazy',
packages=['bson_lazy'],
scripts=['bin/bson2json.py'],
description='A lazy BSON file loader',
long_description=long_description,
platforms='Any',
license='MIT (see: LICENSE.txt)',
keywords='BSON lazy',
install_requires=['PyMongo >= 2.5'],
setup_requires=['nose>=1.0'],
)