YingxuHe commited on
Commit
4c96a72
·
verified ·
1 Parent(s): f6e6948

Create set_up.py

Browse files
Files changed (1) hide show
  1. vllm_plugin_meralion/set_up.py +9 -0
vllm_plugin_meralion/set_up.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup
2
+
3
+ setup(name='vllm_plugin_meralion',
4
+ version='0.1',
5
+ packages=['vllm_plugin_meralion'],
6
+ entry_points={
7
+ 'vllm.general_plugins':
8
+ ["register_dummy_model = vllm_plugin_meralion:register"]
9
+ })