summaryrefslogtreecommitdiff
path: root/Pipfile
blob: fd6c6dc691fdc210188eeed356f6fc74447e9617 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
secp256k1 = "*"

[dev-packages]
pytest = "*"
black = "*"
twine = "*"

[scripts]
test = "pytest"
format = "black ."
build = "python setup.py sdist"
check = "twine check dist/*"
upload = "twine upload dist/*"