You need to sign in or sign up before continuing.
Commit 3391392a by Peter Weidenbach

Dynamic version number generation removed

parent d8a9f12c
import os
import subprocess
from setuptools import setup, find_packages from setuptools import setup, find_packages
try: VERSION = "0.3.2"
VERSION = subprocess.check_output(['git', 'describe', '--always'], cwd=os.path.dirname(os.path.abspath(__file__))).strip().decode('utf-8')
except Exception:
VERSION = "0.x"
setup( setup(
name="common_helper_mongo", name="common_helper_mongo",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment