-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
36 lines (35 loc) · 878 Bytes
/
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
36
from setuptools import setup, find_packages
setup(
name = 'straug',
packages = find_packages(),
include_package_data = True,
version = '0.1.2',
license='Apache',
description='Data Augmentation for STR',
author = 'Rowel Atienza',
author_email = 'rowel@eee.upd.edu.ph',
url = 'https://github.com/roatienza/straug',
keywords = [
'computer vision',
'scene text recognition',
'ocr',
'data augmentation'
],
install_requires=[
'torchvision',
'magickwand',
'pillow',
'opencv-python',
'opencv-contrib-python',
'scikit-image',
'numpy',
'Wand'
],
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
],
)