File size: 315 Bytes
b94fa0f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/usr/bin/env python
from setuptools import setup
setup(
name="opendet2",
version=0.1,
author="csuhan",
url="https://github.com/csuhan/opendet2",
description="Codebase for open set object detection",
python_requires=">=3.6",
install_requires=[
'timm', 'opencv-python'
],
)
|