Skip to content

Commit

Permalink
馃敡 Use scm tag for python package version
Browse files Browse the repository at this point in the history
  • Loading branch information
fiendish committed Jun 1, 2020
1 parent 6004da9 commit d07ecec
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
setuptools_scm
Click==7.0
d3b_utils @ git+https://git@github.com/d3b-center/d3b-utils-python.git
emoji
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
from setuptools import setup, find_packages

from setuptools import find_packages, setup

root_dir = os.path.dirname(os.path.abspath(__file__))
req_file = os.path.join(root_dir, "requirements.txt")
Expand All @@ -8,7 +9,11 @@

setup(
name="d3b-release-maker",
version="1.0.0",
use_scm_version={
"local_scheme": "dirty-tag",
"version_scheme": "post-release",
},
setup_requires=["setuptools_scm"],
description="D3b software release authoring tool",
author=(
"Center for Data Driven Discovery in Biomedicine at the"
Expand Down

0 comments on commit d07ecec

Please sign in to comment.