summaryrefslogtreecommitdiff
path: root/Pipfile
blob: be98520ebd6952af2df45689cd306d63f79ca5e9 (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.py"
format = "black ."
formatcheck = "black --check ."
lint = "pylint -j 0 -d R,C alarmpy.py"
test = "pytest"