1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
[project]
name = "ibm-cloud-sdk-core"
version = "3.24.2"
authors = [
{ name="IBM", email="devxsdk@us.ibm.com" }
]
description = "Core library used by SDKs for IBM Cloud Services"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
keywords=["ibm", "cloud", "ibm cloud services"]
dependencies = [
"requests>=2.32.4,<3.0.0",
"urllib3>=2.4.0,<3.0.0",
"python_dateutil>=2.9.0,<3.0.0",
"PyJWT>=2.10.1,<3.0.0",
]
[project.urls]
Repository = "https://github.com/IBM/python-sdk-core"
Documentation = "https://github.com/IBM/python-sdk-core/blob/main/README.md"
Issues = "https://github.com/IBM/python-sdk-core/issues"
Changelog = "https://github.com/IBM/python-sdk-core/blob/main/CHANGELOG.md"
Contributing = "https://github.com/IBM/python-sdk-core/blob/main/CONTRIBUTING.md"
License = "https://github.com/IBM/python-sdk-core/blob/main/LICENSE"
[project.optional-dependencies]
dev = [
"coverage>=7.9.0,<8.0.0",
"pylint>=3.3.7,<4.0.0",
"pytest>=7.4.4,<8.0.0",
"pytest-cov>=4.1.0,<5.0.0",
"responses>=0.25.7,<1.0.0",
"black>=25.0.0,<26.0.0",
]
publish = [
"build",
"twine"
]
[build-system]
requires = ["setuptools>=67.7.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ibm_cloud_sdk_core", "ibm_cloud_sdk_core.authenticators", "ibm_cloud_sdk_core.token_managers"]
[tool.black]
line-length = 120
skip-string-normalization = true
|