forked from hiroharu-kato/neural_renderer_v2
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
22 lines (21 loc) · 786 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
from torch.utils.cpp_extension import CUDAExtension, BuildExtension
ext_modules = [
CUDAExtension('neural_renderer_torch.cuda.rasterize_cuda', [
'neural_renderer_torch/cuda/rasterize_cuda.cpp',
'neural_renderer_torch/cuda/rasterize_cuda_kernel.cu',
])
]
setuptools.setup(
description='A 3D mesh renderer for neural networks',
author='Hiroharu Kato',
author_email='[email protected]',
url='http://hiroharu-kato.com/projects_en/neural_renderer.html',
license='MIT License',
name='neural_renderer_torch',
test_suite='tests_torch',
packages=['neural_renderer_torch', 'neural_renderer_torch.cuda'],
ext_modules=ext_modules,
cmdclass={'build_ext': BuildExtension},
install_requires=[],
)