summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-02-04 17:12:04 -0600
committerTom Rini <trini@konsulko.com>2025-02-14 17:11:35 -0600
commit5818fcf32e1c4a994d520a86d0cc287ebbd2cfbd (patch)
tree2325a130640d9f441b2c872518c4b001a739eda1
parent30a8c830e92e748a13d881bfe4ded4f7c48c8619 (diff)
python: Create requirements.txt files for each "project"
Rather than have a requirements.txt file that's shared between multiple python projects within U-Boot, create one for each using "pipreqs". Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--tools/binman/requirements.txt5
-rw-r--r--tools/patman/requirements.txt5
-rw-r--r--tools/u_boot_pylib/requirements.txt1
3 files changed, 11 insertions, 0 deletions
diff --git a/tools/binman/requirements.txt b/tools/binman/requirements.txt
new file mode 100644
index 00000000000..f068ef75a30
--- /dev/null
+++ b/tools/binman/requirements.txt
@@ -0,0 +1,5 @@
+importlib_resources==6.5.2
+jsonschema==4.23.0
+pycryptodomex==3.21.0
+pyelftools==0.31
+yamllint==1.35.1
diff --git a/tools/patman/requirements.txt b/tools/patman/requirements.txt
new file mode 100644
index 00000000000..e8cbc6cf0c3
--- /dev/null
+++ b/tools/patman/requirements.txt
@@ -0,0 +1,5 @@
+ConfigParser==7.1.0
+importlib_resources==6.5.2
+pygit2==1.13.3
+Requests==2.32.3
+setuptools==75.8.0
diff --git a/tools/u_boot_pylib/requirements.txt b/tools/u_boot_pylib/requirements.txt
new file mode 100644
index 00000000000..1087e6f2857
--- /dev/null
+++ b/tools/u_boot_pylib/requirements.txt
@@ -0,0 +1 @@
+concurrencytest==0.1.2