forked from thschenk/nosetests-json-extended
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import setup
description = 'Create json logging output for python' + \
'nosetests unittest framework',
setup(
name='nosetests-json-extended-parallel',
version='1.0',
author='Rui Li',
author_email='[email protected]',
description=description,
url='https://github.com/ruivapps/nosetests-json-extended-parallel',
download_url='https://github.com/ruivapps/nosetests-json-extended-parallel/tarball/1.0',
packages=['nosetests_json_extended_parallel'],
zip_safe=False,
entry_points={
'nose.plugins.0.10': [
'nosetests_json_extended_parallel = ' +
'nosetests_json_extended_parallel.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()
)