-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
35 lines (35 loc) · 1.58 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from distutils.core import setup
setup(
name='image_bbox_slicer',
packages=['image_bbox_slicer'],
version='0.4',
license='MIT',
long_description='This easy-to-use library is a data transformer sometimes useful in Object Detection \
and Segmentation tasks. With only a few lines of code, one can slice images and their bounding box annotations \
into smaller tiles, both into specific sizes and into any arbitrary number of equal parts. \
The tool also supports resizing of images and their bounding box annotations, both by specific sizes \
and by a resizing/scaling factor.\n\nRead the docs at https://image-bbox-slicer.readthedocs.io/en/latest/.',
author='Akshay L Chandra',
author_email='[email protected]',
url='https://github.com/acl21/image_bbox_slicer/',
download_url='https://github.com/acl21/image_bbox_slicer/archive/refs/tags/v0.4.tar.gz',
keywords=['Image Slicer', 'Bounding Box Annotations Slicer', 'Slicer', 'PASCAL VOC Slicer', 'Object Detection',
'Resize Images', 'Resize Bounding Box Annotations', 'Segmentation'],
install_requires=[
'Pillow',
'numpy',
'matplotlib',
'pascal-voc-writer'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)