Update setup.py
Browse files
setup.py
CHANGED
@@ -187,4 +187,30 @@ if __name__ == '__main__':
|
|
187 |
author_email='[email protected]',
|
188 |
license='Apache License 2.0',
|
189 |
# install_requires=parse_requirements('requirements.txt'),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
zip_safe=False)
|
|
|
187 |
author_email='[email protected]',
|
188 |
license='Apache License 2.0',
|
189 |
# install_requires=parse_requirements('requirements.txt'),
|
190 |
+
install_requires=[
|
191 |
+
'openmim',
|
192 |
+
'mmcv-lite>=2.0.0rc4,<2.1.0',
|
193 |
+
'mmdet>=3.0.0',
|
194 |
+
'mmengine>=0.7.1',
|
195 |
+
'mmyolo',
|
196 |
+
'gradio',
|
197 |
+
'transformers',
|
198 |
+
'addict',
|
199 |
+
'yapf',
|
200 |
+
'numpy',
|
201 |
+
'opencv-python',
|
202 |
+
'supervision==0.18.0',
|
203 |
+
'ftfy',
|
204 |
+
'regex',
|
205 |
+
'pot',
|
206 |
+
'sentencepiece',
|
207 |
+
'tokenizers',
|
208 |
+
'onnx',
|
209 |
+
'onnxruntime',
|
210 |
+
'onnxruntime-gpu',
|
211 |
+
'onnx-simplifier',
|
212 |
+
'torch==2.0.1',
|
213 |
+
'torchvision==0.15.2',
|
214 |
+
'fastapi==0.111.0'
|
215 |
+
],
|
216 |
zip_safe=False)
|