-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (54 loc) · 2 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (54 loc) · 2 KB
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
from skbuild import setup
import os.path as osp
with open('VERSION', 'r') as f:
version = f.read().strip()
with open('README.md', 'r') as f:
long_description = f.read().strip()
setup( name='external_arrow',
version=version,
long_description=long_description,
long_description_content_type="text/markdown",
packages=[ 'external_arrow',
'external_arrow.arrow',
],
platforms=[
'linux',
'Unix'
],
setup_requires=[
'setuptools',
'cmake',
'scikit-build'
],
install_requires=[
'kwiver>=1.4.2',
'diva-framework>=0.0.3'
],
cmake_args=[
'-DCMAKE_BUILD_TYPE=Release',
'-DENABLE_CPP_ARROW=ON',
'-DKWIVER_PYTHON_MAJOR_VERSION=3',
],
cmake_install_dir='external_arrow',
entry_points={
'kwiver.python_plugin_registration':
[
'simple_detector=external_arrow.arrow.test_object_detector',
],
'kwiver.cpp_search_paths':
[
'simple_detector=external_arrow.register_cpp_arrow:get_cpp_path',
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: Unix",
"License :: OSI Approved :: BSD License"
],
python_requires=">=3.5",
)