Skip to content

Commit

Permalink
Update: setup.py for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
Pandede committed Aug 21, 2023
1 parent c2a145f commit 3f3986f
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
from setuptools import setup, find_packages
from setuptools import find_packages, setup

setup(
name='bbox',
version='0.1.0',
license='MIT',
description='A Python library for handling the 2D bounding box.',
author='Pandede',
url='https://github.com/Pandede/bbox',
download_url='https://github.com/Pandede/bbox/archive/refs/tags/v0.1.0.tar.gz',
keywords=['bbox', 'geometry', 'spatial', 'detection', 'yolo'],
packages=find_packages(),
install_requires=[
"pydantic"
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
)

0 comments on commit 3f3986f

Please sign in to comment.