代码拉取完成,页面将自动刷新
import setuptools
import torch
import torchvision
torch_ver = [int(x) for x in torch.__version__.split(".")[:2]]
assert torch_ver >= [1, 6], "Requires PyTorch >= 1.6"
torchvision_ver = [int(x) for x in torchvision.__version__.split(".")[:2]]
assert torchvision_ver >= [0, 3], "Requires torchvision >= 0.3"
setuptools.setup(
name="face_detection",
version="0.2.1",
author="Håkon Hukkelås",
description="A simple and lightweight package for state of the art face detection with GPU support.",
long_description="".join(open("README.md", "r").readlines()),
long_description_content_type="text/markdown",
url="https://github.com/hukkelas/DSFD-Pytorch-Inference",
python_requires='>=3.6',
license="apache-2.0",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=[
"numpy",
],
packages=setuptools.find_packages()
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。