RichGuk / noseagain

Autonose automatically runs tests for nose (http://code.google.com/p/python-nose/) when the code in the working directory is saved.

This URL has Read+Write access

noseagain / setup.py
100644 13 lines (12 sloc) 0.364 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
from distutils.core import setup
 
setup(
    name = 'noseagain',
    version = '0.0.1',
    author = 'Richard Grundy',
    author_email = 'rich@27smiles.com',
    description = ('automatically run nosetests when files are saved'),
    license = 'MIT',
    url = 'http://github.com/RichGuk/noseagain',
    packages = ['noseagain'],
    scripts = ['bin/noseagain']
)