cleaner separation between requirements and setup

This commit is contained in:
jobevers 2017-02-23 14:18:52 -06:00
parent d3d8426430
commit 090840ee25
2 changed files with 16 additions and 24 deletions

View file

@ -1,30 +1,30 @@
Twisted==16.6.0 Twisted==16.6.0
appdirs==1.4.0 appdirs==1.4.0
argparse==1.2.1 argparse==1.2.1
base58==0.2.2
colorama==0.3.7 colorama==0.3.7
dnspython==1.12.0 dnspython==1.12.0
ecdsa==0.13 ecdsa==0.13
envparse==0.2.0 envparse==0.2.0
gmpy==1.17 gmpy==1.17
googlefinance==0.7
jsonrpc==1.2 jsonrpc==1.2
jsonrpclib==0.1.7 jsonrpclib==0.1.7
jsonschema==2.5.1 jsonschema==2.5.1
loggly-python-handler==1.0.0 git+https://github.com/lbryio/lbryum.git
miniupnpc==1.9 miniupnpc==1.9
pbkdf2==1.3 pbkdf2==1.3
protobuf==3.0.0 protobuf==3.0.0
pycrypto==2.6.1 pycrypto==2.6.1
pyyaml==3.12
qrcode==5.2.2 qrcode==5.2.2
requests==2.9.1 requests==2.9.1
requests_futures==0.9.7 requests_futures==0.9.7
seccure==0.3.1.3 seccure==0.3.1.3
service_identity==16.0.0
simplejson==3.8.2 simplejson==3.8.2
six>=1.9.0 six>=1.9.0
slowaes==0.1a1 slowaes==0.1a1
txJSON-RPC==0.5 txJSON-RPC==0.5
wsgiref==0.1.2 wsgiref==0.1.2
zope.interface==4.3.3 zope.interface==4.3.3
base58==0.2.2
googlefinance==0.7
pyyaml==3.12
service_identity==16.0.0

View file

@ -18,39 +18,31 @@ keywords = "LBRY"
# TODO: find a way to keep this in sync with requirements.txt # TODO: find a way to keep this in sync with requirements.txt
#
# Note though that this list is intentionally less restrictive than
# requirements.txt. This is only the libraries that are direct
# dependencies of the lbrynet library. requirements.txt includes
# dependencies of dependencies and specific versions that we know
# all work together.
# See https://packaging.python.org/requirements/ for more details.
requires = [ requires = [
'Twisted', 'Twisted',
'appdirs', 'appdirs',
'argparse', 'base58',
'colorama',
'dnspython',
'ecdsa',
'envparse', 'envparse',
'gmpy', 'googlefinance',
'jsonrpc', 'jsonrpc',
'jsonrpclib',
'jsonschema', 'jsonschema',
'lbryum', 'lbryum>=2.7.6',
'loggly-python-handler',
'miniupnpc', 'miniupnpc',
'pbkdf2',
'protobuf',
'pycrypto', 'pycrypto',
'qrcode', 'pyyaml',
'requests', 'requests',
'requests_futures', 'requests_futures',
'seccure', 'seccure',
'simplejson', 'simplejson',
'six',
'slowaes',
'txJSON-RPC', 'txJSON-RPC',
'wsgiref',
'zope.interface', 'zope.interface',
'base58',
'googlefinance',
'pyyaml',
'service_identity',
'ndg-httpsclient',
] ]