File size: 576 Bytes
a7d80f2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages

setup(
    name="mlpipeline",
    version="0.1.0",
    author="AutoML Team",
    packages=find_packages(where="src"),
    package_dir={"": "src"},
    python_requires=">=3.11",
    install_requires=[
        "fastapi",
        "uvicorn[standard]",
        "pydantic",
        "pandas",
        "numpy",
        "scikit-learn",
        "autogluon.tabular",
        "flaml",
        "pycaret",
        "mlflow",
        "dvc",
        "evidently",
        "pyyaml",
        "python-box",
        "ensure",
        "kaggle",
    ],
)