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

[packages]
requests = "*"
click = "*"

[dev-packages]
pytest = "*"
black = "==21.5b1"
pylint = "*"
twine = "*"
build = "*"

[scripts]
alarmpy = "python alarmpy/alarmpy.py"
format = "black alarmpy"
formatcheck = "black --check alarmpy"
lint = "pylint -j 0 -d R,C alarmpy"
test = "pytest"
build = "python -m build"
upload = "twine upload dist/*"