-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (34 loc) · 1.16 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
__author__ = 'roy'
import os
from setuptools import setup, find_packages
ROOT = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(ROOT, 'README.rst')).read()
CHANGES = open(os.path.join(ROOT, 'CHANGES.md')).read()
requires = [
'nose',
]
setup(name='nose-logpertest',
version='0.0.1',
description='Logging nose plugin to create log per test',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
],
license='Apache Software License',
author='Roy Klinger',
author_email='[email protected]',
url='https://github.com/taykey/nose-logpertest',
packages=find_packages(),
keywords='nosetest logging',
include_package_data=True,
zip_safe=False,
entry_points="""\
[nose.plugins.0.10]
logpertest = nose_logpertest:LogPerTest
""",
install_requires=requires)