gfxmonk / autonose

autotest-like plugin for nosetests

This URL has Read+Write access

autonose / setup.py
100755 40 lines (38 sloc) 1.083 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
#!/usr/bin/env python
 
from setuptools import *
setup(
name='autonose',
version='0.1.2',
author_email='tim3d.junk+autonose@gmail.com',
author='Tim Cuthbertson',
url='http://github.com/gfxmonk/autonose',
description="continuous test tracker / runner for nosetests",
long_description="continuous test tracker / runner for nosetests",
packages = find_packages(exclude=['test', 'test.*']),
entry_points = {
'nose.plugins.0.11': ['autonose = autonose:Watcher'],
'console_scripts': ['autonose = autonose:main'],
},
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
],
keywords='test nosetests nose nosetest autotest auto runner',
license='BSD',
zip_safe=True,
install_requires=[
'setuptools',
'nose>=0.11',
'python-nosexml',
'mandy',
'snakefood',
'termstyle',
],
dependency_links = [
"http://gfxmonk.net/misc/pypi/"
],
)