-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
36 lines (34 loc) · 1.17 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
from setuptools import setup, find_packages
import mongobox
setup(
name='mongobox',
version=mongobox.__version__,
description="Run sandboxed Mongo DB instance from a python application.",
long_description=open("README.md").read(),
url='http://github.com/theorm/mongobox',
license=open("LICENSE").read(),
author=mongobox.__author__,
author_email='[email protected]',
packages=find_packages(exclude=('tests',)),
package_data={'': ['LICENSE', '*.md']},
include_package_data=True,
install_requires=[],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Software Development :: Testing'
],
tests_require=["nose>=0.10", "pymongo>=2.0"],
test_suite = "nose.collector",
entry_points={
'nose.plugins.0.10': [
'mongobox = mongobox.nose_plugin:MongoBoxPlugin',
],
}
)