-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hans Gaiser
committed
May 15, 2018
1 parent
eec7bf4
commit 25805f2
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,17 @@ | |
setuptools.setup( | ||
name='keras-maskrcnn', | ||
version='0.0.1', | ||
description='Keras implementation of MaskRCNN instance aware segmentation.', | ||
url='https://github.com/fizyr/keras-maskrcnn', | ||
author='Hans Gaiser', | ||
author_email='[email protected]', | ||
maintainer='Hans Gaiser', | ||
maintainer_email='[email protected]', | ||
packages=setuptools.find_packages(), | ||
install_requires=['keras', 'keras-retinanet'], | ||
#entry_points = { | ||
# 'console_scripts': [ | ||
# 'maskrcnn-train=keras_maskrcnn.bin.train:main', | ||
# ], | ||
#} | ||
entry_points = { | ||
'console_scripts': [ | ||
'maskrcnn-train=keras_maskrcnn.bin.train:main', | ||
], | ||
} | ||
) |