forked from ppwwyyxx/cocoapi
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
4 changed files
with
21 additions
and
6 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
graft ./common |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../common |
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 |
---|---|---|
@@ -1,27 +1,37 @@ | ||
from setuptools import setup, Extension | ||
import numpy as np | ||
|
||
from setuptools import dist, setup, Extension | ||
# To compile and install locally run "python setup.py build_ext --inplace" | ||
# To install library to Python site-packages run "python setup.py build_ext install" | ||
|
||
|
||
setup_requires=[ | ||
'setuptools>=18.0', | ||
'cython>=0.27.3', | ||
'numpy', | ||
] | ||
dist.Distribution().fetch_build_eggs(setup_requires) | ||
|
||
import numpy as np | ||
|
||
ext_modules = [ | ||
Extension( | ||
'pycocotools._mask', | ||
sources=['../common/maskApi.c', 'pycocotools/_mask.pyx'], | ||
include_dirs = [np.get_include(), '../common'], | ||
sources=['./common/maskApi.c', 'pycocotools/_mask.pyx'], | ||
include_dirs = [np.get_include(), './common'], | ||
extra_compile_args=['-Wno-cpp', '-Wno-unused-function', '-std=c99'], | ||
) | ||
] | ||
|
||
setup( | ||
name='pycocotools', | ||
description='Official APIs for the MS-COCO dataset', | ||
packages=['pycocotools'], | ||
package_dir = {'pycocotools': 'pycocotools'}, | ||
setup_requires=setup_requires, | ||
install_requires=[ | ||
'setuptools>=18.0', | ||
'cython>=0.27.3', | ||
'matplotlib>=2.1.0' | ||
], | ||
version='2.0', | ||
version='2.0.1', | ||
ext_modules= ext_modules | ||
) |