Skip to content

Commit

Permalink
Merge pull request #85 from adybbroe/fix-broken-scm-versioning
Browse files Browse the repository at this point in the history
Fix broken scm versioning
  • Loading branch information
mraspaud authored Jul 16, 2020
2 parents 1516cce + 799e286 commit b566872
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions .git_archival.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ref-names: $Format:%D$
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# Copyright (c) 2013-2019 Pytroll developers
# Copyright (c) 2013-2020 Pytroll developers

# Author(s):

Expand All @@ -23,7 +23,7 @@

"""Setup for trollflow2."""

from setuptools import setup
from setuptools import setup, find_packages
import sys

try:
Expand Down Expand Up @@ -56,14 +56,13 @@
"Programming Language :: Python",
"Topic :: Scientific/Engineering"],
url="https://github.com/pytroll/trollflow2",
packages=['trollflow2',
'trollflow2.plugins',
],
packages=find_packages(),
scripts=['bin/satpy_launcher.py', ],
data_files=[],
zip_safe=False,
install_requires=install_requires,
tests_require=['mock'],
python_requires='>=3.4',
test_suite='trollflow2.tests.suite',
use_scm_version=True
)

0 comments on commit b566872

Please sign in to comment.