Skip to content

Commit

Permalink
Switch to setuptools_scm for managing versions
Browse files Browse the repository at this point in the history
  • Loading branch information
davehunt committed Feb 28, 2017
1 parent 0e83f44 commit 684120a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='pytest-variables',
version='1.4',
use_scm_version=True,
description='pytest plugin for providing variables to tests/fixtures',
long_description=open('README.rst').read(),
author='Dave Hunt',
Expand All @@ -10,6 +10,7 @@
packages=['pytest_variables'],
entry_points={'pytest11': ['variables = pytest_variables.plugin']},
install_requires=['pytest>=2.4.2'],
setup_requires=['setuptools_scm'],
extras_require={
'hjson': ['hjson'],
'yaml': ['PyYAML']},
Expand Down

0 comments on commit 684120a

Please sign in to comment.