update pipfile with ordering and comments, and active dev packages for WIP

pull/378/head
Kieran Prasch 2018-07-19 13:47:39 -07:00 committed by Kieran R. Prasch
parent 544ed794d3
commit 59f298c9d2
2 changed files with 37 additions and 26 deletions

52
Pipfile
View File

@ -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"

View File

@ -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)