huaweicloud-sdk-python-v3/huaweicloud-sdk-fgs/setup.py

55 lines
1.5 KiB
Python
Raw Normal View History

2020-05-18 07:34:40 +00:00
# coding: utf-8
"""
FGS
API v2 # noqa: E501
The version of the OpenAPI document: v1
Generated by: https://openapi-generator.tech
"""
from setuptools import setup, find_packages
NAME = "huaweicloudsdkfgs"
DESCRIPTION = "FGS"
AUTHOR = "HuaweiCloud SDK"
URL = "https://github.com/huaweicloud/huaweicloud-sdk-python-v3"
VERSION = "3.0.2-beta"
2020-05-18 07:34:40 +00:00
REQUIRES = ["huaweicloudsdkcore"]
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README_PYPI.md'), encoding='utf-8') as f:
long_description = f.read()
2020-05-18 07:34:40 +00:00
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
2020-05-18 07:34:40 +00:00
author=AUTHOR,
license="Apache LICENSE 2.0",
url=URL,
keywords=["huaweicloud", "sdk", "FGS"],
packages=find_packages(exclude=["tests*"]),
install_requires=REQUIRES,
include_package_data=True,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
)
)