forked from dcramer/nose-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 963 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
33
34
35
36
37
#!/usr/bin/env python
from setuptools import setup, find_packages
tests_require = [
]
setup(
name='nose-json',
version='0.2.6',
author='Teo Lisitza',
author_email='teo@cumulusnetworks.com',
description='A JSON report plugin for Nose.',
url='http://github.com/teolisitza/nose-json',
packages=find_packages(exclude=["tests"]),
zip_safe=False,
install_requires=[
'nose>=0.9',
'simplejson',
],
entry_points={
'nose.plugins.0.10': [
'nose_json = nose_json.plugin:JsonReportPlugin'
]
},
license='Apache License 2.0',
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='runtests.runtests',
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)