summaryrefslogtreecommitdiff
path: root/Pipfile
blob: 88a214346be0b5d58e9d43cf4fab94e887c79ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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/*"