-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 929 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
from setuptools import setup
setup(
name='imageaug',
version='0.0.1',
description='Currently used as a wrapper for imgaug by aleju',
url='[email protected]:darwinharianto/imageaug-package.git',
author='Darwin Harianto',
author_email='[email protected]',
license='unlicense',
packages=['imageaug'],
install_requires=[
'opencv-python>=4.1.1.26',
'numpy>=1.17.2',
'Shapely>=1.6.4.post2',
'matplotlib>=3.1.1',
'Pillow>=6.1.0',
'pycocotools>=2.0.0',
'pylint>=2.4.2',
'labelme>=3.16.7',
'PyYAML>=5.1.2',
'pyqt5>=5.14.1',
'pyclay-common_utils @ https://github.com/cm107/common_utils/archive/master.zip',
'pyclay-logger @ https://github.com/cm107/logger/archive/master.zip',
'pyclay-annotation_utils @ https://github.com/cm107/annotation_utils/archive/master.zip'
],
zip_safe=False
)