Ai
3 Star 17 Fork 7

算法美食屋/torchkeras

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
算法美食屋 提交于 2025-09-22 14:46 +08:00 . update 4.0.6
# -*- coding:utf-8 -*-
import re
from pathlib import Path
from setuptools import find_packages, setup, find_namespace_packages
# Settings
FILE = Path(__file__).resolve()
PARENT = FILE.parent # root directory
README = (PARENT / "README_en.md").read_text(encoding="utf-8")
def get_version():
file = PARENT/'torchkeras/__init__.py'
return re.search(r'__version__="(.*)"', file.read_text(encoding="utf-8"),re.M)[1]
setup(
name="torchkeras",
version=get_version(),
author="lyhue1991,octopus,Laugh",
author_email="lyhue1991@163.com",
description="pytorch❤️keras",
long_description=README,
install_requires=[
'tabm',
#'accelerate>=0.20.3',
#'tqdm',
#'torch',
#'torchmetrics',
#'plotly',
#'wandb'
],
long_description_content_type="text/markdown",
url="https://github.com/lyhue1991/torchkeras",
packages=find_namespace_packages(exclude=['torchkeras.assets','data']),
include_package_data=True,
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="vlog, deep-learning, DL, pytorch, torch, keras",
python_requires='>=3.5',
# 确保没有使用 license_file 或 metadata_version 参数
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Python_Ai_Road/torchkeras.git
git@gitee.com:Python_Ai_Road/torchkeras.git
Python_Ai_Road
torchkeras
torchkeras
master

搜索帮助