Ai
1 Star 0 Fork 0

Alibaba Cloud/alibabacloud-console-bench-python-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 2.62 KB
一键复制 编辑 原始数据 按行查看 历史
lzh 提交于 2020-11-17 16:20 +08:00 . add version
# -*- coding: utf-8 -*-
"""
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
"""
import sys
import os
from setuptools import setup, find_packages
"""
setup module for aliyun-console-bench-python-sdk.
Created on 17/11/2020
@author: Alibaba Cloud
"""
PACKAGE = "one_sdk"
NAME = "aliyun-console-bench-python-sdk"
DESCRIPTION = "Aliyun Console Bench SDK Library for Python"
AUTHOR = "Alibaba Cloud"
AUTHOR_EMAIL = "alibaba-cloud-sdk-dev-team@list.alibaba-inc.com"
URL = "https://github.com/aliyun/alibabacloud-console-bench-python-sdk"
REQUIRES = ["aliyun-python-sdk-core>=2.13.0, <3.0.0"]
VERSION = __import__(PACKAGE).__version__
LONG_DESCRIPTION = ''
if os.path.exists('./README.md'):
if sys.version_info[0] == 2:
with open("README.md") as fp:
LONG_DESCRIPTION = fp.read()
else:
with open("README.md", encoding='utf-8') as fp:
LONG_DESCRIPTION = fp.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license="Apache License 2.0",
url=URL,
keywords=["Aliyun", "sdk", "Console", "Bench"],
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
platforms="any",
install_requires=REQUIRES,
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.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Topic :: Software Development"
)
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/aliyun/alibabacloud-console-bench-python-sdk.git
git@gitee.com:aliyun/alibabacloud-console-bench-python-sdk.git
aliyun
alibabacloud-console-bench-python-sdk
alibabacloud-console-bench-python-sdk
master

搜索帮助