-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
82 lines (64 loc) · 2.57 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import setuptools
from setuptools.extension import Extension
from distutils.command.build_ext import build_ext as DistUtilsBuildExt
from pkg_resources import DistributionNotFound, get_distribution
def get_dist(pkgname):
try:
return get_distribution(pkgname)
except DistributionNotFound:
return None
install_deps = ['keras_retinanet==0.5.1',
'numpy',
'scipy>=1.2.0',
'cython']
# install 'tensorflow' ('cpu' or 'gpu') if it doesn't exist (see: https://stackoverflow.com/a/49338206/8302386)
if get_dist('tensorflow>=1.14.0') is None and get_dist('tensorflow-gpu>=1.14.0') is None:
install_deps.append('tensorflow')
class BuildExtension(setuptools.Command):
description = DistUtilsBuildExt.description
user_options = DistUtilsBuildExt.user_options
boolean_options = DistUtilsBuildExt.boolean_options
help_options = DistUtilsBuildExt.help_options
def __init__(self, *args, **kwargs):
from setuptools.command.build_ext import build_ext as SetupToolsBuildExt
# Bypass __setatrr__ to avoid infinite recursion.
self.__dict__['_command'] = SetupToolsBuildExt(*args, **kwargs)
def __getattr__(self, name):
return getattr(self._command, name)
def __setattr__(self, name, value):
setattr(self._command, name, value)
def initialize_options(self, *args, **kwargs):
return self._command.initialize_options(*args, **kwargs)
def finalize_options(self, *args, **kwargs):
ret = self._command.finalize_options(*args, **kwargs)
import numpy
self.include_dirs.append(numpy.get_include())
return ret
def run(self, *args, **kwargs):
return self._command.run(*args, **kwargs)
extensions = [
Extension(
'anchor_optimization.utils.compute_overlap',
['anchor_optimization/utils/compute_overlap.pyx']
),
]
setuptools.setup(
name='anchor-optimization',
version='0.0.1',
description='Tool to optimize RetinaNet anchor configuration.',
url='https://github.com/martinzlocha/anchor-optimization',
author='Martin Zlocha',
author_email='[email protected]',
maintainer='Martin Zlocha',
maintainer_email='[email protected]',
cmdclass={'build_ext': BuildExtension},
packages=setuptools.find_packages(),
install_requires=install_deps,
entry_points={
'console_scripts': [
'anchor-optimization=anchor_optimization.optimize_anchors_argparse:main',
],
},
ext_modules=extensions,
setup_requires=["cython>=0.28", "numpy>=1.14.0"]
)