summaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2020-02-01 14:26:42 +0200
committerYuval Adam <_@yuv.al>2020-02-01 14:26:42 +0200
commit5b39d49ea52d3ffdd0868a1a1f1d6c3b8d0198ec (patch)
tree9128fbe380333a05bc0d7f0ac5b7f43ccc101825 /Pipfile
parent9ad1d77d4f4e82cf6286efc950261b1b01ab9057 (diff)
parent961c4233f817617b18950df30c23b54f76060013 (diff)
Merge branch 'master' into colors
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/*"