mirror of https://github.com/nucypher/nucypher.git
update pipfile with ordering and comments, and active dev packages for WIP
parent
544ed794d3
commit
59f298c9d2
52
Pipfile
52
Pipfile
|
@ -4,37 +4,59 @@ verify_ssl = true
|
|||
name = "pypi"
|
||||
|
||||
[packages]
|
||||
|
||||
cryptography = ">=2.3"
|
||||
requests = "*"
|
||||
maya = "*"
|
||||
hendrix = "==3.0.0"
|
||||
#
|
||||
# NuCypher
|
||||
#
|
||||
constantSorrow = {git = "https://github.com/nucypher/constantSorrow.git", ref = "nucypher-depend"}
|
||||
bytestringSplitter = {git = "https://github.com/nucypher/byteStringSplitter.git", ref = "nucypher-depend"}
|
||||
sqlalchemy = "*"
|
||||
apistar = "*"
|
||||
rpcudp = {git = "https://github.com/nucypher/rpcudp", ref = "nucypher-depend"}
|
||||
kademlia = {git = "https://github.com/nucypher/kademlia", ref = "nucypher-depend"}
|
||||
pynacl = "*"
|
||||
pysha3 = "*"
|
||||
py_ecc = "*"
|
||||
pyumbral = {git = "https://github.com/nucypher/pyumbral.git", ref = "nucypher-depend"}
|
||||
web3 = "==4.4.1"
|
||||
#
|
||||
# Third-Party
|
||||
#
|
||||
cryptography = ">=2.3"
|
||||
pysha3="*"
|
||||
hendrix = "==3.0.0"
|
||||
requests = "*"
|
||||
maya = "*"
|
||||
sqlalchemy = "*"
|
||||
apistar = "*"
|
||||
click = "*"
|
||||
#
|
||||
# Third-Party Ethereum
|
||||
#
|
||||
eth-utils="*"
|
||||
eth-keys="*"
|
||||
web3 = ">=4.4.1"
|
||||
|
||||
[dev-packages]
|
||||
ipdb = "*"
|
||||
#
|
||||
# Pytest
|
||||
#
|
||||
pytest = "*"
|
||||
mypy = "*"
|
||||
pytest-mypy = "*"
|
||||
pytest-twisted = "*"
|
||||
pytest-cov = "*"
|
||||
mypy = "*"
|
||||
codecov = "*"
|
||||
coverage = "*"
|
||||
pytest-cov = "*"
|
||||
#
|
||||
# Ethereum
|
||||
#
|
||||
py-solc = "*"
|
||||
py-evm = "==0.2.0a18"
|
||||
eth-tester = "==0.1.0b28"
|
||||
py-evm = "==0.2.0a18"
|
||||
#
|
||||
# Active Development Packages
|
||||
#
|
||||
#nucypher = {editable = true, path = "."}
|
||||
#coincurve = {path = "./../coincurve"}
|
||||
#umbral = {editable = true, path = "./../pyUmbral"}
|
||||
|
||||
[pipenv]
|
||||
allow_prereleases = true
|
||||
|
||||
[scripts]
|
||||
install_solc = "scripts/install_solc.sh"
|
||||
install-solc = "scripts/install_solc.sh"
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
import logging
|
||||
import sys
|
||||
|
||||
root = logging.getLogger()
|
||||
root.setLevel(logging.WARNING)
|
||||
|
||||
ch = logging.StreamHandler(sys.stdout)
|
||||
ch.setLevel(logging.WARNING)
|
||||
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
|
||||
ch.setFormatter(formatter)
|
||||
root.addHandler(ch)
|
Loading…
Reference in New Issue