updated yaml file

This commit is contained in:
Liyu Xiao 2025-05-16 11:33:31 -04:00
parent cdc293c7ce
commit aad813a4e2
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install h5py numpy
pip install -e
pip install -e .
- name: 1. Build HDF5 Dataset
run: |

View File

@ -3,8 +3,8 @@ from setuptools import setup, find_packages
setup(
name="modrec_workflow",
version="0.1",
packages=find_packages(), # this will pick up `utils/` (so utils/__init__.py must exist)
packages=find_packages(),
install_requires=[
# runtime dependencies go here (if any)
],
)