diff --git a/CHANGELOG b/CHANGELOG index e4f4b2e..44931a9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +* 0.1.0 + - Package wrap with setup.py + - Fix hex prefix bug in tx serialization * 0.0.1 - Introduce signer, transaction, keystore packages - Add test for keystore and signer diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/setup.py b/setup.py index efb789d..e6c2038 100644 --- a/setup.py +++ b/setup.py @@ -17,4 +17,6 @@ setup( scripts = [ 'scripts/crypto-dev-daemon', ], + data_files = [('', ['LICENSE.txt'])], + url='https://gitlab.com/nolash/crypto-dev-signer', )