forked from fizyr/keras-retinanet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 869 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
import setuptools
setuptools.setup(
name='keras-retinanet',
version='0.3.1',
description='Keras implementation of RetinaNet object detection.',
url='https://github.com/fizyr/keras-retinanet',
author='Hans Gaiser',
author_email='h.gaiser@fizyr.com',
maintainer='Hans Gaiser',
maintainer_email='h.gaiser@fizyr.com',
packages=setuptools.find_packages(),
install_requires=['keras', 'keras-resnet', 'six', 'scipy'],
entry_points = {
'console_scripts': [
'retinanet-train=keras_retinanet.bin.train:main',
'retinanet-evaluate-coco=keras_retinanet.bin.evaluate_coco:main',
'retinanet-evaluate=keras_retinanet.bin.evaluate:main',
'retinanet-debug=keras_retinanet.bin.debug:main',
'retinanet-convert-model=keras_retinanet.bin.convert_model:main',
],
}
)