Skip to content

Commit eaa4157

Browse files
feat(api): Updated python-sdk to adopt Code Engine API specification changes
1 parent dea8a98 commit eaa4157

File tree

5 files changed

+39
-102
lines changed

5 files changed

+39
-102
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/unit-and-integration-test.yml

Lines changed: 0 additions & 50 deletions
This file was deleted.

pyproject.toml

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,44 @@
11
[build-system]
2-
requires = ["setuptools >= 61.0"]
2+
requires = ["setuptools >= 77.0.3"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.black]
66
line-length = 120
77
skip-string-normalization = true
8+
9+
[project]
10+
name = 'ibm-code-engine-sdk'
11+
version = '4.21.1'
12+
authors = [
13+
{ name = 'IBM', email = 'coligo@de.ibm.com'},
14+
]
15+
classifiers = [
16+
'Programming Language :: Python',
17+
'Programming Language :: Python :: 3',
18+
'Programming Language :: Python :: 3.9',
19+
'Programming Language :: Python :: 3.10',
20+
'Programming Language :: Python :: 3.11',
21+
'Programming Language :: Python :: 3.12',
22+
'Programming Language :: Python :: 3.13',
23+
'Development Status :: 5 - Production/Stable',
24+
'Intended Audience :: Developers',
25+
'License :: OSI Approved :: Apache Software License',
26+
'Operating System :: OS Independent',
27+
'Topic :: Software Development :: Libraries :: Python Modules',
28+
'Topic :: Software Development :: Libraries :: Application Frameworks',
29+
]
30+
dynamic = ['dependencies', 'optional-dependencies']
31+
description = 'Python SDK for IBM Cloud Code Engine'
32+
keywords = ['ibm_code_engine_sdk', 'ibm-code-engine-sdk', 'Code Engine', 'Code-Engine', 'code engine', 'code-engine']
33+
license = {text = 'Apache 2.0'}
34+
readme = 'README.md'
35+
36+
[project.urls]
37+
'Homepage' = 'https://github.com/IBM/code-engine-python-sdk'
38+
39+
[tool.setuptools.dynamic]
40+
dependencies = {file = ['requirements.txt']}
41+
optional-dependencies = {dev = { file = ['requirements-dev.txt'] }}
42+
43+
[tool.setuptools]
44+
packages = ['ibm_code_engine_sdk']

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
requests>=2.32.4,<3.0.0
2-
urllib3>=2.5.0,<2.6.0
2+
urllib3>=2.6.1,<2.7.0
33
python_dateutil>=2.5.3,<3.0.0
44
ibm_cloud_sdk_core>=3.16.0,<4.0.0

0 commit comments

Comments
 (0)