Skip to content

Commit 7315d85

Browse files
author
Paweł Kędzia
committed
Remove obsolete requirements_lib.txt handling and inline the install_requires list in setup.py.
1 parent 0952257 commit 7315d85

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
# ----------------------------------------------------------------------
99
version = (BASE_DIR / ".version").read_text().strip()
1010
long_description = (BASE_DIR / "README.md").read_text(encoding="utf-8")
11-
requirements_lib = (BASE_DIR / "requirements_lib.txt").read_text().splitlines()
1211

1312
# ----------------------------------------------------------------------
1413
# API‑specific requirements
@@ -43,8 +42,7 @@
4342
exclude=("tests", "docs"),
4443
),
4544
python_requires=">=3.10",
46-
install_requires=requirements_lib
47-
+ [
45+
install_requires=[
4846
"radlab-ml-utils @ git+https://github.com/radlab-dev-group/ml-utils",
4947
"llm-router-plugins @ git+https://github.com/radlab-dev-group/llm-router-plugins",
5048
],

0 commit comments

Comments
 (0)