Skip to content

Commit d9c0b87

Browse files
committed
Switch to setuptools_scm for managing versions
1 parent 7f4fb47 commit d9c0b87

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
setup(name='pytest-html',
4-
version='1.10.0',
4+
use_scm_version=True,
55
description='pytest plugin for generating HTML reports',
66
long_description=open('README.rst').read(),
77
author='Dave Hunt',
@@ -10,6 +10,7 @@
1010
packages=['pytest_html'],
1111
package_data={'pytest_html': ['resources/*']},
1212
entry_points={'pytest11': ['html = pytest_html.plugin']},
13+
setup_requires=['setuptools_scm'],
1314
install_requires=['pytest>=2.3'],
1415
license='Mozilla Public License 2.0 (MPL 2.0)',
1516
keywords='py.test pytest html report',

0 commit comments

Comments
 (0)