summaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
new file mode 100644
index 0000000..fd6c6dc
--- /dev/null
+++ b/Pipfile
@@ -0,0 +1,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/*"