-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
32 lines (29 loc) · 980 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
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup
description = 'Create json logging output for python' + \
'nosetests unittest framework',
setup(
name='nosetests-json-extended',
version='0.1.0',
author='Thijs Schenkelaars',
author_email='[email protected]',
description=description,
url='http://github.com/thschenk/nosetests-json-extended',
packages=['nosetests_json_extended'],
zip_safe=False,
entry_points={
'nose.plugins.0.10': [
'nosetests_json_extended = ' +
'nosetests_json_extended.plugin:JsonExtendedPlugin'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing'
],
long_description=open('README.rst', 'r').read()
)