forked from nloadholtes/nose-randomize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (40 loc) · 1.43 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (40 loc) · 1.43 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
42
43
44
45
46
47
48
"""
Randomize test order plugin
This code is a fork of the nloadholtes/nose-randomize project (https://github.com/nloadholtes/nose-randomize)
The original source of the code is:
http://code.google.com/p/python-nose/issues/detail?id=255
and the original author is: Charles McCreary
"""
try:
import ez_setup
ez_setup.use_setuptools()
except ImportError:
pass
from setuptools import setup
setup(
name='randomize',
version='0.11',
maintainer='NutCrook',
maintainer_email='nutcrook@gmail.com',
url='https://github.com/nutcrook/nose-randomize',
download_url='https://github.com/nutcrook/nose-randomize/archive/master.zip',
author='Charles McCreary',
author_email='charles.mccreary@tiawichiresearch.com',
description='Randomize the order of the tests within a unittest.TestCase class',
license='GNU LGPL',
py_modules=['randomize/plugin', 'randomize/__init__'],
entry_points={
'nose.plugins.0.10': [
'randomize = randomize:Randomize'
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Testing',
'Topic :: Utilities']
)