Skip to content

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
vrym2 committed May 29, 2023
1 parent e81a4eb commit a90777d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from setuptools import setup, find_packages

VERSION = '0.0.1'
DESCRIPTION = 'YOLO -Oil Tank Detection'
LONG_DESCRIPTION = """
Modular implementation of Workflow of Oil tank detection - YOLOX
https://www.kaggle.com/code/jeffaudi/oil-storage-detection-on-airbus-imagery-with-yolox
"""

# Setting up
setup(
name="oiltankYOLO",
version=VERSION,
author="Vardhan Raj Modi",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages()
)

0 comments on commit a90777d

Please sign in to comment.