mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-05-08 16:32:41 +08:00
4021d66ea5
* add fd plugins && rm model_classed * fix reviews * add docs * fix * fix unitest ci
16 lines
388 B
Python
16 lines
388 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="fastdeploy-plugins",
|
|
version="0.1",
|
|
packages=["fd_add_dummy_model"],
|
|
entry_points={
|
|
"fastdeploy.model_register_plugins": [
|
|
"fd_add_dummy_model = fd_add_dummy_model:register",
|
|
],
|
|
# 'fastdeploy.model_runner_plugins': [
|
|
# "model_runner = model_runner:get_runner"
|
|
# ]
|
|
},
|
|
)
|