Skip to content
Snippets Groups Projects
Commit 91e5ee6e authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

Seems to successfully build from pyproject.toml dependencies; now dealing with downstream issues

parent 1d0f1780
No related branches found
No related tags found
No related merge requests found
......@@ -27,9 +27,9 @@ requirements:
- pip
run:
- python >=3.9
{ % for dep in pp.get('dependencies') % }
{% for dep in pp.get('dependencies') %}
- {{ dep.lower() }}
{ % endfor % }
{% endfor %}
- pip
......
......@@ -15,21 +15,21 @@ readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"czifile",
"fastapi >= 0.101",
"ilastik ~= 1.4.1",
"fastapi >=0.101",
"ilastik =1.4.1b15",
"imagecodecs",
"jupyterlab",
"matplotlib",
"numpy ~= 1.22.4",
"pandas ~= 1.5.3",
"numpyco",
"pandas",
"pillow",
"pydantic ~= 1.10.1",
"pytorch ~= 1.13.1",
"scikit-image >= 0.21.0",
"scikit-learn >= 1.5.0",
"pydantic ~=1.10.1",
"pytorch ==1.*",
"scikit-image >=0.21.0",
"scikit-learn >=1.5.0",
"tifffile",
"uvicorn >= 0.23.0",
"zstd ~= 1.5.5",
"uvicorn >=0.23.0",
"zstd",
]
[project.urls]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment