modrec-workflow/setup.py
Liyu Xiao cdc293c7ce
Some checks failed
RIA Hub Workflow Demo / ria-demo (push) Failing after 14s
formatted code, added setup.py file to install packages
2025-05-16 11:31:37 -04:00

11 lines
273 B
Python

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)
install_requires=[
# runtime dependencies go here (if any)
],
)