This commit is contained in:
Waylon Walker 2021-01-09 11:56:37 -06:00
commit e90c0321a1
4 changed files with 393 additions and 0 deletions

8
setup.py Normal file
View file

@ -0,0 +1,8 @@
from setuptools import setup
setup(
name="MiniKedroPipeline",
version="0.1.0",
py_modules=["mini_kedro_pipeline"],
install_requires=["kedro"],
)