diff options
author | F. Eugene Aumson <feuGeneA@users.noreply.github.com> | 2018-11-08 00:20:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-08 00:20:46 +0800 |
commit | 95b2898b9c0898c7e2d98ee603bff0604bf2a829 (patch) | |
tree | 6ac589bc869b0e177b48e4a2ae545fc986b08cba /python-packages/order_utils/src/conf.py | |
parent | 094f71066294d14bc1920e4d3ddf4e7705201d61 (diff) | |
download | dexon-0x-contracts-95b2898b9c0898c7e2d98ee603bff0604bf2a829.tar dexon-0x-contracts-95b2898b9c0898c7e2d98ee603bff0604bf2a829.tar.gz dexon-0x-contracts-95b2898b9c0898c7e2d98ee603bff0604bf2a829.tar.bz2 dexon-0x-contracts-95b2898b9c0898c7e2d98ee603bff0604bf2a829.tar.lz dexon-0x-contracts-95b2898b9c0898c7e2d98ee603bff0604bf2a829.tar.xz dexon-0x-contracts-95b2898b9c0898c7e2d98ee603bff0604bf2a829.tar.zst dexon-0x-contracts-95b2898b9c0898c7e2d98ee603bff0604bf2a829.zip |
[order_utils.py] is_signature_valid, via Exchange contract (#1216)
First support for signature validation, done via Exchange contract's
isValidSignature() method.
Diffstat (limited to 'python-packages/order_utils/src/conf.py')
-rw-r--r-- | python-packages/order_utils/src/conf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python-packages/order_utils/src/conf.py b/python-packages/order_utils/src/conf.py index 606cd3b2a..6b6776d01 100644 --- a/python-packages/order_utils/src/conf.py +++ b/python-packages/order_utils/src/conf.py @@ -3,6 +3,7 @@ # Reference: http://www.sphinx-doc.org/en/master/config from typing import List +import pkg_resources # pylint: disable=invalid-name @@ -12,7 +13,7 @@ project = "0x-order-utils" # pylint: disable=redefined-builtin copyright = "2018, ZeroEx, Intl." author = "F. Eugene Aumson" -version = "0.1.0" # The short X.Y version +version = pkg_resources.get_distribution("0x-order-utils").version release = "" # The full version, including alpha/beta/rc tags extensions = [ |