This repository was archived by the owner on Jan 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (39 loc) · 1.34 KB
/
setup.py
File metadata and controls
46 lines (39 loc) · 1.34 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
"""
Randomize test order plugin
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.14',
maintainer='Nick Loadholtes',
maintainer_email='nick@ironboundsoftware.com',
url='https://github.com/nloadholtes/nose-randomize',
download_url='https://github.com/nloadholtes/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']
)