Skip to content

Commit

Permalink
update init for scm
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorris3 committed Jul 31, 2023
1 parent b9b0d29 commit e375455
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions fleck/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst

from pkg_resources import get_distribution, DistributionNotFound

try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
__version__ = 'dev'
pass # pragma: no cover

del get_distribution, DistributionNotFound
from .version import version as __version__
except ImportError:
__version__ = ''

from .core import *

0 comments on commit e375455

Please sign in to comment.