setup.py aktualisiert
Gitea Actions For AIIA / Explore-Gitea-Actions (push) Successful in 40s Details

This commit is contained in:
Falko Victor Habel 2025-04-02 12:16:16 +00:00
parent 0545c10092
commit 0d38999072
1 changed files with 8 additions and 3 deletions

View File

@ -6,9 +6,14 @@ setup(
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
line.strip()
for line in open("requirements.txt")
if line.strip() and not line.startswith("#")
"torch",
"aiia",
"pillow",
"torchvision",
"scikit-learn",
],
dependency_links=[
"git+https://gitea.fabelous.app/Machine-Learning/AIIA.git#egg=aiia"
],
python_requires=">=3.10",
)