Skip to content

Commit

Permalink
Removing versioning from libthumbor since its now in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
heynemann committed Feb 14, 2020
1 parent d4ae956 commit 649460e
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions libthumbor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,6 @@

"""libthumbor is the library used to access thumbor's images in python"""

from pkg_resources import DistributionNotFound, get_distribution

from libthumbor.crypto import CryptoURL # NOQA
from libthumbor.url import Url # NOQA
from libthumbor.url_signers.base64_hmac_sha1 import UrlSigner as Signer # NOQA

__project__ = "libthumbor"

try:
__version__ = get_distribution(__project__).version
except DistributionNotFound:
# Returns a local version. For tests.
__version__ = "{}-local".format(__project__)

0 comments on commit 649460e

Please sign in to comment.