1 Star 0 Fork 3

liguiming77/label-studio-ml-backend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
liguiming77 提交于 2024-11-04 17:46 . s
import setuptools
import label_studio_ml
print(label_studio_ml.package_name, label_studio_ml.__version__)
# Readme
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
# Module dependencies
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setuptools.setup(
name=label_studio_ml.package_name,
version=label_studio_ml.__version__,
author="Heartex",
author_email="[email protected]",
description="Label Studio ML backend",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitee.com:/liguiming77/label-studio-ml-backend",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=requirements,
python_requires=">=3.8",
entry_points={
"console_scripts": ["label-studio-ml=label_studio_ml.server:main"],
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liguiming77/label-studio-ml-backend.git
[email protected]:liguiming77/label-studio-ml-backend.git
liguiming77
label-studio-ml-backend
label-studio-ml-backend
master

搜索帮助