Skip to content

Commit

Permalink
Fixed configuration of versioneer.
Browse files Browse the repository at this point in the history
  • Loading branch information
hbarthels committed Apr 30, 2019
1 parent c685ba5 commit a9e73cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -89,5 +89,5 @@ exclude_lines =
VCS = git
style = pep440
versionfile_source = matchpy/_version.py
versionfile_build = None
versionfile_build = matchpy/_version.py
tag_prefix =
6 changes: 5 additions & 1 deletion setup.py
@@ -1,5 +1,9 @@
# -*- coding: utf-8 -*-

import setuptools
import versioneer

setuptools.setup()
setuptools.setup(
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass()
)

0 comments on commit a9e73cc

Please sign in to comment.