1 Star 0 Fork 2

陈猛/facenet-pytorch

forked from lwppwl/facenet-pytorch 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
Tim Esler 提交于 2021-03-09 16:59 . Increment patch version
import setuptools, os
PACKAGE_NAME = 'facenet-pytorch'
VERSION = '2.5.2'
AUTHOR = 'Tim Esler'
EMAIL = 'tim.esler@gmail.com'
DESCRIPTION = 'Pretrained Pytorch face detection and recognition models'
GITHUB_URL = 'https://github.com/timesler/facenet-pytorch'
parent_dir = os.path.dirname(os.path.realpath(__file__))
import_name = os.path.basename(parent_dir)
with open('{}/README.md'.format(parent_dir), 'r') as f:
long_description = f.read()
setuptools.setup(
name=PACKAGE_NAME,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
url=GITHUB_URL,
packages=[
'facenet_pytorch',
'facenet_pytorch.models',
'facenet_pytorch.models.utils',
'facenet_pytorch.data',
],
package_dir={'facenet_pytorch':'.'},
package_data={'': ['*net.pt']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'numpy',
'requests',
'torchvision',
'pillow',
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chenmeng0508/facenet-pytorch.git
git@gitee.com:chenmeng0508/facenet-pytorch.git
chenmeng0508
facenet-pytorch
facenet-pytorch
master

搜索帮助