summaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2020-02-01 14:15:30 +0200
committerYuval Adam <_@yuv.al>2020-02-01 14:15:30 +0200
commit4a4f33ebd842f5037cdc691e273bfccf30df4c3e (patch)
tree2e3e0c85272d7eb352b558fbba1784473041a494 /Pipfile
parent1b5fadb7e676bf5036f73319359cd0e1c1ac3b95 (diff)
Add development tools in Pipfile and update README
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
new file mode 100644
index 0000000..88a2143
--- /dev/null
+++ b/Pipfile
@@ -0,0 +1,18 @@
+[[source]]
+name = "pypi"
+url = "https://pypi.org/simple"
+verify_ssl = true
+
+[dev-packages]
+pytest = "*"
+black = "==19.10b0"
+twine = "*"
+
+[packages]
+
+[scripts]
+test = "pytest"
+format = "black ."
+build = "python setup.py sdist"
+check = "twine check dist/*"
+upload = "twine upload dist/*"