forked from mahmoudimus/nose-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (45 loc) · 1.54 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
with open('nose2_timer/__init__.py') as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
setup(
name='nose2-timer',
version=version,
description='A timer plugin for nose2',
long_description=long_description,
author='Harley Faggetter',
author_email='[email protected]',
url='https://github.com/Topperfalkon/nose2-timer',
packages=['nose2_timer', ],
install_requires=[
'nose2',
],
license='MIT',
entry_points={
'nose.plugins.0.10': [
'nose2_timer = nose2_timer.plugin:TimerPlugin',
]
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Testing',
'Environment :: Console',
],
)