Skip to content

Commit

Permalink
Add setup.py(KerasKorea#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
minus31 committed Oct 20, 2019
1 parent b8f1d5c commit 7f23bfe
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ def finalize_options(self, *args, **kwargs):
def run(self, *args, **kwargs):
return self._command.run(*args, **kwargs)


extensions = [
Extension(
'keras_retinanet.utils.compute_overlap',
Expand All @@ -43,17 +42,17 @@ def run(self, *args, **kwargs):


setuptools.setup(
name = 'keras-retinanet',
version = '0.5.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',
name = 'yolk',
version = '0.0.1',
description = 'Keras API for object detection.',
url = 'https://github.com/KerasKorea/KerasObjectDetector',
author = 'KerasKorea',
author_email = 'keras.yolk@gmail.com',
maintainer = 'KerasKorea',
maintainer_email = 'keras.yolk@gmail.com',
cmdclass = {'build_ext': BuildExtension},
packages = setuptools.find_packages(),
install_requires = ['keras', 'keras-resnet==0.1.0', 'six', 'scipy', 'cython', 'Pillow', 'opencv-python', 'progressbar2'],
install_requires = ['keras', 'keras-resnet==0.1.0', 'six', 'scipy', 'cython', 'Pillow', 'opencv-python', 'progressbar2', 'tqdm'],
entry_points = {
'console_scripts': [
'retinanet-train=keras_retinanet.bin.train:main',
Expand Down

0 comments on commit 7f23bfe

Please sign in to comment.