-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1.14 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (36 loc) · 1.14 KB
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
from setuptools import setup
DESCRIPTION = """\
NoseGAE: nose plugin for Google App Engine testing\
"""
LONG_DESCRIPTION = """\
Basic usage::
$ cd your/app
$ nosetests --with-gae
See http://farmdev.com/projects/nosegae/ for complete documentation or open docs/readme.html after downloading the package.
"""
VERSION = '0.2.2'
setup(
name='NoseGAE',
version=VERSION,
author="Jason Pellerin",
author_email="jpellerin@gmail.com",
maintainer="Kumar McMillan",
maintainer_email="kumar.mcmillan@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
("License :: OSI Approved :: GNU Library or "
"Lesser General Public License (LGPL)"),
"Topic :: Software Development :: Testing"
],
url='http://code.google.com/p/nose-gae/',
license='LGPL License',
entry_points = {
'nose.plugins.0.10': [ 'nosegae = nosegae:NoseGAE']
},
py_modules = ['nosegae'],
install_requires = ['nose>=0.10.1'],
tests_require = ['WebTest', 'trestle>=0.2a1']
)