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