forked from mkwiatkowski/pinocchio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.1 KB
/
setup.py
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
from setuptools import setup
setup(
name='pinocchio',
version="0.3.1",
description = 'pinocchio plugins for the nose testing framework',
author = 'C. Titus Brown and Michal Kwiatkowski',
author_email = '[email protected],[email protected]',
license = 'MIT',
url = 'https://github.com/mkwiatkowski/pinocchio',
long_description = """\
Extra plugins for the nose testing framework. Provides tools for flexibly
assigning decorator tags to tests, choosing tests based on their
runtime, doing moderately sophisticated code coverage analysis
of your unit tests, and making your test descriptions look like
specifications.
""",
packages = ['pinocchio'],
entry_points = {
'nose.plugins': [
'figleaf-sections = pinocchio.figleaf_sections:FigleafSections',
],
'nose.plugins.0.10': [
'decorator = pinocchio.decorator:Decorator',
'output-save = pinocchio.output_save:OutputSave',
'spec = pinocchio.spec:Spec',
'stopwatch = pinocchio.stopwatch:Stopwatch',
]},
install_requires = ['colorama'],
)