Created
January 17, 2023 05:25
-
-
Save PeterMitrano/2c9855a82fa510fc3db4b5e86a12211c to your computer and use it in GitHub Desktop.
Yolov7 setup.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from distutils.core import setup | |
setup(name='yolo', | |
version='1.0', | |
description='yolo v7', | |
author='', | |
author_email='', | |
url='', | |
packages=['.', 'inference', 'tools', 'utils'], | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment