28 lines
816 B
Python
28 lines
816 B
Python
"""智能算法展示平台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",
|
|
)
|