-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
27 lines (26 loc) · 884 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
from setuptools import setup
setup(
name='nose2_html_report',
packages=['nose2_html_report'],
version='0.6.0',
description='Generate an HTML report for your unit tests',
long_description=open('README.md', 'r').read(),
author='Michael Grijalva',
author_email='[email protected]',
license='MIT',
install_requires=['jinja2'],
package_data={
'nose2_html_report': ['templates/report.html']
},
url='https://github.com/mgrijalva/nose2-html-report',
download_url='',
keywords=['nose2', 'testing', 'reporting'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
]
)