-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
48 lines (46 loc) · 1.32 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
[build-system]
requires = ["flit_core >=3.9,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ibmcloudant"
version = "0.9.3"
description = "Python client library for IBM Cloudant"
dependencies = [
"ibm_cloud_sdk_core==3.22.0",
"requests>=2.32.2,<3.0.0",
"python_dateutil>=2.5.3,<3.0.0",
"PyJWT>=2.0.1,<3.0.0",
]
authors = [
{ name="IBM", email="cldtsdks@us.ibm.com" },
]
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
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 :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
keywords = [
"ibmcloudant",
"Cloudant",
"IBM",
"database",
"client",
"SDK",
"official"
]
[project.urls]
"Homepage" = "https://github.com/IBM/cloudant-python-sdk"
"Bug Tracker" = "https://github.com/IBM/cloudant-python-sdk/issues"