first commit
This commit is contained in:
27
sdk/python/setup.py
Normal file
27
sdk/python/setup.py
Normal 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",
|
||||
)
|
||||
Reference in New Issue
Block a user