forked from tinyvision/DAMO-YOLO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (49 loc) · 1.66 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
#!/usr/bin/env python
# Copyright (C) Alibaba Group Holding Limited. All rights reserved.
import glob
import re
from os import path
import setuptools
import torch
from torch.utils.cpp_extension import CppExtension
torch_ver = [int(x) for x in torch.__version__.split('.')[:2]]
assert torch_ver >= [1, 7], 'Requires PyTorch >= 1.7'
def get_extensions():
this_dir = path.dirname(path.abspath(__file__))
extensions_dir = path.join(this_dir, 'damo', 'layers', 'csrc')
main_source = path.join(extensions_dir, 'vision.cpp')
sources = glob.glob(path.join(extensions_dir, '**', '*.cpp'))
sources = [main_source] + sources
extension = CppExtension
extra_compile_args = {'cxx': ['-O3']}
define_macros = []
include_dirs = [extensions_dir]
ext_modules = [
extension(
'damo._C',
sources,
include_dirs=include_dirs,
define_macros=define_macros,
extra_compile_args=extra_compile_args,
)
]
return ext_modules
with open('damo/__init__.py', 'r') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(),
re.MULTILINE).group(1)
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='damo',
version=version,
author='basedet team',
python_requires='>=3.6',
long_description=long_description,
ext_modules=get_extensions(),
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
],
cmdclass={'build_ext': torch.utils.cpp_extension.BuildExtension},
packages=setuptools.find_packages(),
)