We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f4fb47 commit d9c0b87Copy full SHA for d9c0b87
setup.py
@@ -1,7 +1,7 @@
1
from setuptools import setup
2
3
setup(name='pytest-html',
4
- version='1.10.0',
+ use_scm_version=True,
5
description='pytest plugin for generating HTML reports',
6
long_description=open('README.rst').read(),
7
author='Dave Hunt',
@@ -10,6 +10,7 @@
10
packages=['pytest_html'],
11
package_data={'pytest_html': ['resources/*']},
12
entry_points={'pytest11': ['html = pytest_html.plugin']},
13
+ setup_requires=['setuptools_scm'],
14
install_requires=['pytest>=2.3'],
15
license='Mozilla Public License 2.0 (MPL 2.0)',
16
keywords='py.test pytest html report',
0 commit comments