summaryrefslogtreecommitdiff
path: root/Pipfile
blob: 5baa62044252559bb6130859df0b455537331949 (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 = "*"
twine = "*"

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