4
0
Fork 0

Added requirements Make

Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
Mark Bolwell 2023-01-13 14:18:34 +00:00
parent e1c41c4652
commit 801eff8a53
No known key found for this signature in database
GPG key ID: 1DE02A772D0908F9
2 changed files with 16 additions and 0 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
# TESTS
all: yamllint
yamllint:
git ls-files "*.yml"|xargs yamllint
requirements:
@echo 'Python dependencies:'
@cat requirements.txt
pip install -r requirements.txt

5
requirements.txt Normal file
View file

@ -0,0 +1,5 @@
passlib
lxml
xmltodict
jmespath
yamllint