feat(meta): Add dependencies
This commit is contained in:
parent
824e6c67d0
commit
a4ff9aff4b
@ -2,3 +2,6 @@ lxml
|
|||||||
rich
|
rich
|
||||||
validators
|
validators
|
||||||
dnspython
|
dnspython
|
||||||
|
inflect
|
||||||
|
cogapp
|
||||||
|
dbus-python
|
||||||
|
@ -4,13 +4,19 @@
|
|||||||
#
|
#
|
||||||
# pip-compile
|
# pip-compile
|
||||||
#
|
#
|
||||||
|
cogapp==3.3.0
|
||||||
|
# via -r requirements.in
|
||||||
commonmark==0.9.1
|
commonmark==0.9.1
|
||||||
# via rich
|
# via rich
|
||||||
|
dbus-python==1.2.18
|
||||||
|
# via -r requirements.in
|
||||||
decorator==5.1.1
|
decorator==5.1.1
|
||||||
# via validators
|
# via validators
|
||||||
dnspython==2.2.1
|
dnspython==2.2.1
|
||||||
# via -r requirements.in
|
# via -r requirements.in
|
||||||
lxml==4.9.0
|
inflect==5.6.0
|
||||||
|
# via -r requirements.in
|
||||||
|
lxml==4.9.1
|
||||||
# via -r requirements.in
|
# via -r requirements.in
|
||||||
pygments==2.12.0
|
pygments==2.12.0
|
||||||
# via rich
|
# via rich
|
||||||
|
@ -16,6 +16,12 @@ import validators
|
|||||||
# Build XML structure
|
# Build XML structure
|
||||||
import lxml.etree
|
import lxml.etree
|
||||||
import lxml.builder
|
import lxml.builder
|
||||||
|
# Correctly generate plurals, singular nouns etc.
|
||||||
|
import inflect
|
||||||
|
# Restart firewalld systemd service unit
|
||||||
|
import dbus
|
||||||
|
# Find physical network interface via 'find' command
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
|
||||||
# Exit codes
|
# Exit codes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user