Skip to content

Commit

Permalink
setup.py: get version from git
Browse files Browse the repository at this point in the history
  • Loading branch information
aperrin66 committed May 21, 2024
1 parent 45bcb77 commit bea31cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ def run_setup(skip_compile):

setup(
name=NAME,
version=VERSION,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
Expand All @@ -237,6 +236,8 @@ def run_setup(skip_compile):
cmdclass = {'install_scripts': my_install_scripts},
install_requires=REQS,
test_suite="nansat.tests",
use_scm_version=True,
setup_requires=['setuptools_scm'],
**kw
)

Expand Down

0 comments on commit bea31cc

Please sign in to comment.