Skip to content

Commit

Permalink
automatic versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
TimoWintz committed Jan 13, 2020
1 parent 8ccbc70 commit f15c04c
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
import os
from setuptools import setup, find_packages
import subprocess

NAME = "romidata"
DESCRIPTION = "Data handling tools for the ROMI project"
LICENSE = "Gnu LGPL"
VERSION = "0.5dev0"

opts = dict(name=NAME,
description=DESCRIPTION,
license=LICENSE,
version=VERSION,
label = subprocess.check_output(["git", "describe"]).decode().strip()

opts = dict(name="romidata",
packages=find_packages(),
scripts=['bin/fsdb-sync'],
install_requires=[],
setup_requires=['setuptools_scm'],
use_scm_version=True
)

if __name__ == '__main__':
Expand Down

0 comments on commit f15c04c

Please sign in to comment.