Upgrade deps
This commit is contained in:
parent
8f11bdc2cc
commit
7a9572e978
@ -1,2 +1,2 @@
|
|||||||
chainlib~=0.0.1a7
|
chainlib~=0.0.1a28
|
||||||
crypto-dev-signer~=0.4.13rc2
|
crypto-dev-signer~=0.4.14a5
|
||||||
|
@ -1,5 +1,24 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
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(
|
||||||
package_data={
|
package_data={
|
||||||
'': [
|
'': [
|
||||||
@ -7,4 +26,6 @@ setup(
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
|
install_requires=requirements,
|
||||||
|
tests_require=test_requirements,
|
||||||
)
|
)
|
||||||
|
3
python/test_requirements.txt
Normal file
3
python/test_requirements.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
eth_tester==0.5.0b3
|
||||||
|
py-evm==0.3.0a20
|
||||||
|
giftable-erc20-token==0.0.8a1
|
Reference in New Issue
Block a user