1 Star 0 Fork 1

fancybit / nvdiffrast

forked from 刘跃根 / nvdiffrast 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
fancybit 提交于 2022-10-21 12:01 . xxx
# Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
import nvdiffrast
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="nvdiffrast",
version=nvdiffrast.__version__,
author="Samuli Laine",
author_email="slaine@nvidia.com",
description="nvdiffrast - modular primitives for high-performance differentiable rendering",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitee.com/fancybit/nvdiffrast",
packages=setuptools.find_packages(),
package_data={
'nvdiffrast': [
'common/*.h',
'common/*.inl',
'common/*.cu',
'common/*.cpp',
'lib/*.h',
'torch/*.h',
'torch/*.inl',
'torch/*.cpp',
'tensorflow/*.cu',
] + (['lib/*.lib'] if os.name == 'nt' else [])
},
include_package_data=True,
install_requires=['numpy'], # note: can't require torch here as it will install torch even for a TensorFlow container
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)
1
https://gitee.com/fancybit/nvdiffrast.git
git@gitee.com:fancybit/nvdiffrast.git
fancybit
nvdiffrast
nvdiffrast
main

搜索帮助