forked from qoherent/modrec-workflow
11 lines
273 B
Python
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)
|
|
],
|
|
)
|