forked from LBRYCommunity/lbry-sdk
only install jsonschema during testing
This commit is contained in:
parent
94bf357817
commit
37eb55375a
1 changed files with 4 additions and 2 deletions
6
setup.py
6
setup.py
|
@ -53,7 +53,6 @@ setup(
|
||||||
'multidict==4.6.1',
|
'multidict==4.6.1',
|
||||||
'coincurve==15.0.0',
|
'coincurve==15.0.0',
|
||||||
'pbkdf2==1.3',
|
'pbkdf2==1.3',
|
||||||
'jsonschema==4.4.0',
|
|
||||||
'attrs==18.2.0',
|
'attrs==18.2.0',
|
||||||
'pylru==1.1.0',
|
'pylru==1.1.0',
|
||||||
'elasticsearch==7.10.1',
|
'elasticsearch==7.10.1',
|
||||||
|
@ -63,7 +62,10 @@ setup(
|
||||||
extras_require={
|
extras_require={
|
||||||
'torrent': ['lbry-libtorrent'],
|
'torrent': ['lbry-libtorrent'],
|
||||||
'lint': ['pylint==2.10.0'],
|
'lint': ['pylint==2.10.0'],
|
||||||
'test': ['coverage'],
|
'test': [
|
||||||
|
'coverage',
|
||||||
|
'jsonschema==4.4.0',
|
||||||
|
],
|
||||||
'scribe': ['scribe @ git+https://github.com/lbryio/scribe.git'],
|
'scribe': ['scribe @ git+https://github.com/lbryio/scribe.git'],
|
||||||
},
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|
Loading…
Reference in a new issue