requirements

This commit is contained in:
Moritz 2023-11-09 15:29:14 +01:00
parent 7c15bcb3f6
commit 60ba89b9bc
2 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import json
import logging
from pathlib import Path
import subprocess
import re
from tabulate import tabulate
import click
@ -13,7 +14,6 @@ from jinja2 import Environment, FileSystemLoader
from ruamel.yaml import YAML
from ruamel.yaml.constructor import SafeConstructor
from ruamel.yaml.nodes import ScalarNode
import re
COMBINE_PATH = os.path.dirname(os.path.realpath(__file__)) + "/combine.yml"
CONFIG_FILE_NAME = 'alaka.yaml'

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
tabulate==0.9.0
click==7.1.2
ruamel.yaml==0.18.3
Jinja2==2.11.3