hotsyk / appenginepatcherplugin

Nose plugin to test applications based on GAE+AppEnginePatch+Django

This URL has Read+Write access

appenginepatcherplugin / setup.py
100644 27 lines (23 sloc) 0.706 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
try:
    import ez_setup
    ez_setup.use_setuptools()
except ImportError:
    pass
 
from setuptools import setup
 
setup(
    name='appenginepatcherplugin',
    version='0.2',
    url='http://github.com/hotsyk/appenginepatcherplugin/tree/master',
    author='Volodymyr Hotsyk',
    author_email = 'gotsyk+nose@gmail.com',
    description = 'Appengine patch nose plugin',
    install_requires='nose',
    license = 'GNU LGPL',
    keywords = 'test unittest nose nosetests plugin gae appenginepatch',
    py_modules = ['appenginepatcherplugin'],
    entry_points = {
        'nose.plugins.0.10': [
            'appenginepatcherplugin = appenginepatcherplugin:AppenginePatcher'
            ]
        }
 
    )