first commit

This commit is contained in:
2026-02-08 14:42:58 +08:00
commit 20e1deae21
8197 changed files with 2264639 additions and 0 deletions

27
sdk/python/setup.py Normal file
View File

@@ -0,0 +1,27 @@
"""智能算法展示平台Python SDK安装配置"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="algorithm-showcase-sdk",
version="1.0.0",
description="智能算法展示平台Python SDK",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/algorithm-showcase/sdk",
author="Algorithm Showcase Team",
author_email="team@algorithm-showcase.com",
packages=find_packages(),
install_requires=[
"requests>=2.31.0"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)