develop #11

Merged
Fabel merged 22 commits from develop into main 2025-04-04 20:12:21 +00:00
1 changed files with 8 additions and 3 deletions
Showing only changes of commit 0d38999072 - Show all commits

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",
)