Upgrade confini
This commit is contained in:
parent
6558f7fc03
commit
f5af19081f
@ -1,3 +1,5 @@
|
|||||||
|
* 0.4.3
|
||||||
|
- Align rlp dependency to solve discrepancy in eth-tester/py-evm dependencies
|
||||||
* 0.4.2
|
* 0.4.2
|
||||||
- Upgrade rlp depencency
|
- Upgrade rlp depencency
|
||||||
* 0.4.1
|
* 0.4.1
|
||||||
|
@ -3,7 +3,7 @@ psycopg2==2.8.6
|
|||||||
cryptography==3.2.1
|
cryptography==3.2.1
|
||||||
eth-keys==0.3.3
|
eth-keys==0.3.3
|
||||||
pysha3==1.0.2
|
pysha3==1.0.2
|
||||||
rlp==2.0.1
|
rlp==2.0.0a1
|
||||||
json-rpc==1.13.0
|
json-rpc==1.13.0
|
||||||
confini==0.3.2
|
confini==0.3.3
|
||||||
sqlalchemy==1.3.20
|
sqlalchemy==1.3.20
|
||||||
|
33
setup.py
33
setup.py
@ -4,9 +4,27 @@ f = open('README.md', 'r')
|
|||||||
long_description = f.read()
|
long_description = f.read()
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
|
requirements = []
|
||||||
|
f = open('requirements.txt', 'r')
|
||||||
|
while True:
|
||||||
|
l = f.readline()
|
||||||
|
if l == '':
|
||||||
|
break
|
||||||
|
requirements.append(l.rstrip())
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
test_requirements = []
|
||||||
|
f = open('test_requirements.txt', 'r')
|
||||||
|
while True:
|
||||||
|
l = f.readline()
|
||||||
|
if l == '':
|
||||||
|
break
|
||||||
|
test_requirements.append(l.rstrip())
|
||||||
|
f.close()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="crypto-dev-signer",
|
name="crypto-dev-signer",
|
||||||
version="0.4.2",
|
version="0.4.3",
|
||||||
description="A signer and keystore daemon and library for cryptocurrency software development",
|
description="A signer and keystore daemon and library for cryptocurrency software development",
|
||||||
author="Louis Holbrook",
|
author="Louis Holbrook",
|
||||||
author_email="dev@holbrook.no",
|
author_email="dev@holbrook.no",
|
||||||
@ -18,17 +36,8 @@ setup(
|
|||||||
'crypto_dev_signer.runnable',
|
'crypto_dev_signer.runnable',
|
||||||
'crypto_dev_signer',
|
'crypto_dev_signer',
|
||||||
],
|
],
|
||||||
install_requires=[
|
install_requires=requirements,
|
||||||
'web3==5.12.2',
|
tests_require=test_requirements,
|
||||||
'psycopg2==2.8.6',
|
|
||||||
'cryptography==3.2.1',
|
|
||||||
'eth-keys==0.3.3',
|
|
||||||
'pysha3==1.0.2',
|
|
||||||
'rlp==2.0.1',
|
|
||||||
'json-rpc==1.13.0',
|
|
||||||
'confini==0.3.2',
|
|
||||||
'sqlalchemy==1.3.20',
|
|
||||||
],
|
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type='text/markdown',
|
long_description_content_type='text/markdown',
|
||||||
#scripts = [
|
#scripts = [
|
||||||
|
Loading…
Reference in New Issue
Block a user