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

[packages]

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

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