2 Star 20 Fork 2

tencentcloud/tencentcloud-sdk-python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
ZhiQiang Fan 提交于 2025-02-07 15:53 +08:00 . add py311 & py312 support classifiers (#204)
#!/usr/bin/env python
"""
distutils/setuptools install script.
"""
import os
from setuptools import setup, find_packages
import tencentcloud
ROOT = os.path.dirname(__file__)
setup(
name='tencentcloud-sdk-python',
install_requires=["requests>=2.16.0"],
version=tencentcloud.__version__,
description='Tencent Cloud SDK for Python',
long_description=open('README.rst').read(),
author='Tencent Cloud',
url='https://github.com/TencentCloud/tencentcloud-sdk-python',
maintainer_email="[email protected]",
scripts=[],
packages=find_packages(exclude=["tests*"]),
license="Apache License 2.0",
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tencentcloud/tencentcloud-sdk-python.git
[email protected]:tencentcloud/tencentcloud-sdk-python.git
tencentcloud
tencentcloud-sdk-python
tencentcloud-sdk-python
master

搜索帮助