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

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

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

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