-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
43 lines (37 loc) · 1.18 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
DESCRIPTION = 'A nose plugin to facilitate the creation of automated tests' +\
' that access Mongo Engine structures.'
f = open("README.rst")
try:
try:
LONG_DESCRIPTION = f.read()
except:
LONG_DESCRIPTION = ""
finally:
f.close()
CLASSIFIERS = [
'Environment :: Plugins',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
]
setup(name='nose-mongoengine',
version="0.2.2",
classifiers=CLASSIFIERS,
author='Marcelo Anton',
author_email='[email protected]',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url='http://github.com/mbanton/nose-mongoengine/',
download_url='http://github.com/mbanton/nose-mongoengine/tarball/master',
license='BSD-derived',
packages=find_packages(exclude=('tests',)),
install_requires=["nose", "mongoengine"],
include_package_data=True,
zip_safe=True,
platforms=['any'],
entry_points={
'nose.plugins': ['mongoengine = nose_mongoengine:MongoEnginePlugin'],
},
)