-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpyproject.toml
63 lines (58 loc) · 2.04 KB
/
pyproject.toml
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
[project]
name = "ibm-platform-services"
version = "0.59.1"
authors = [
{ name="IBM", email="[email protected]" }
]
description = "Python client library for IBM Cloud Platform Services"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"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", "ibm cloud platform services"]
dependencies = [
"ibm_cloud_sdk_core>=3.22.1,<4.0.0",
]
[project.urls]
Repository = "https://github.com/IBM/platform-services-python-sdk"
Documentation = "https://github.com/IBM/platform-services-python-sdk/blob/main/README.md"
Issues = "https://github.com/IBM/platform-services-python-sdk/issues"
Changelog = "https://github.com/IBM/platform-services-python-sdk/blob/main/CHANGELOG.md"
Contributing = "https://github.com/IBM/platform-services-python-sdk/blob/main/CONTRIBUTING.md"
License = "https://github.com/IBM/platform-services-python-sdk/blob/main/LICENSE"
[project.optional-dependencies]
dev = [
"coverage>=7.3.2,<8.0.0",
"pylint>=3.0.0,<4.0.0",
"pytest>=7.4.2,<8.0.0",
"pytest-cov>=4.1.0,<5.0.0",
"responses>=0.23.3,<1.0.0",
"black>=24.0.0,<25.0.0",
]
publish = [
"build",
"twine"
]
[build-system]
requires = ["setuptools>=67.7.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ibm_platform_services"]
[tool.black]
line-length = 120
skip-string-normalization = true