-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
27 lines (23 loc) · 780 Bytes
/
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
# encoding: utf-8
from __future__ import absolute_import, print_function, unicode_literals
import os
import sys
from setuptools import setup
ROOT = os.path.dirname(__file__)
setup(name='nose-congestion',
version='0.0.3',
author='Chris Adams',
author_email='[email protected]',
url='http://github.com/acdha/nose-congestion',
description='Find slow test setUp/tearDown',
long_description=open(os.path.join(ROOT, 'README.rst')).read(),
py_modules=['nose_congestion'],
include_package_data=True,
zip_safe=False,
entry_points={
'nose.plugins.0.10': [
'congestion = nose_congestion:CongestionPlugin',
]
},
setup_requires=['nose>=1.0'],
test_suite = 'nose.collector')