From 806d5cc35ecd2bfc3abd6f234bcabc145ac4da70 Mon Sep 17 00:00:00 2001 From: Léo Vansimay Date: Wed, 21 Apr 2021 11:00:08 +0200 Subject: Update setup.py Attempt to add a package to setup.py to set the version number according to a commit tag (e.g. v1.0.0 or 1.0.0), link to the repo used : https://github.com/dolfinus/setuptools-git-versioning--- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cf6f3e5a..5aae20b2 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,8 @@ setup( name='sec-certs', author='Petr Svenda, Stanislav Bobon, Jan Jancar, Adam Janovsky', author_email='svenda@fi.muni.cz', - version='0.0.0', + version_config=True, + setup_requires=['setuptools-git-versioning'], packages=find_packages(), license='MIT', description="Tool for analysis of security certificates", -- cgit v1.3.1