-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
10 lines (9 loc) · 802 Bytes
/
Copy pathsetup.py
File metadata and controls
10 lines (9 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
from setuptools import setup, find_packages
setup(name='yolo-card-trainer', version='1.0.0', license='MIT',
description='A project for creating dataset and training a YOLO model', author='MacMat01, SenseiBonsai2k',
author_email='matteo.machella01@gmail.com, cristian.marinozzi1@gmail.com',
url='https://github.com/MacMat01/yolo-card-trainer', packages=find_packages(),
install_requires=['opendatasets', 'ultralytics', 'opencv-python-headless', # py-opencv
'pandas', 'seaborn', 'matplotlib', 'ipykernel', 'torch', 'torchvision', 'torchaudio', 'imgaug', 'tqdm',
'requests', 'pyzbar'], classifiers=['Development Status :: 3 - Alpha', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.12.3', ], )