1 Star 0 Fork 1

chenyouxin113/pyVHR

forked from KojimaNotGood/pyVHR 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
vcuculo 提交于 2021-10-28 18:14 . bump up version
import setuptools
import os
from shutil import copyfile
requirementPath = 'requirements.txt'
reqs = []
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
reqs = f.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyVHR",
version="1.0.2",
author="Vittorio Cuculo <[email protected]>, Donatello Conte <[email protected]>, Alessandro D'Amelio <[email protected]>, Giuliano Grossi <[email protected]>, Edoardo Mortara <[email protected]>",
author_email="",
description="Package for rPPG methods",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/phuselab/pyVHR",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=reqs,
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chenyouxin113/pyVHR.git
[email protected]:chenyouxin113/pyVHR.git
chenyouxin113
pyVHR
pyVHR
master

搜索帮助