forked from mahmoudimus/nose-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.06 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.06 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='nose-timer',
version='0.2.0',
description=u'A timer plugin for nosetests',
long_description=open('README.rst').read(),
author=', '.join([
u'Juan Pedro Fisanotti',
u'Mahmoud Abdelkader',
u'Andres Riancho',
u'Ivan Kolodyazhny',
u'Kevin Burke',
]),
url='https://github.com/mahmoudimus/nose-timer',
packages=['nosetimer', ],
license='LICENSE',
entry_points='''
[nose.plugins.0.10]
nosetimer = nosetimer:TimerPlugin
''',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Testing',
'Environment :: Console',
],
)