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