-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (92 loc) · 2.49 KB
/
pyproject.toml
File metadata and controls
102 lines (92 loc) · 2.49 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = [
"setuptools >= 77.0.0",
"wheel",
"cython ~= 3.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "oracledb"
description = "Python interface to Oracle Database"
keywords = ["Oracle", "database"]
authors = [{name = "Anthony Tuininga", email = "anthony.tuininga@oracle.com"}]
license = "UPL-1.0 OR Apache-2.0"
license-files = [
"LICENSE.txt",
"THIRD_PARTY_LICENSES.txt",
"NOTICE.txt",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Cython",
"Topic :: Database",
]
requires-python = ">=3.9"
dependencies = [
"cryptography>=3.2.1",
"typing_extensions>=4.14.0",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://oracle.github.io/python-oracledb"
Installation = "https://python-oracledb.readthedocs.io/en/latest/user_guide/installation.html"
Samples = "https://github.com/oracle/python-oracledb/tree/main/samples"
Documentation = "http://python-oracledb.readthedocs.io"
"Release Notes" = "https://python-oracledb.readthedocs.io/en/latest/release_notes.html"
Issues = "https://github.com/oracle/python-oracledb/issues"
Source = "https://github.com/oracle/python-oracledb"
[project.optional-dependencies]
test = [
"anyio",
"numpy",
"pandas",
"pyarrow",
"pytest",
"tox",
]
oci_config = ["oci"]
oci_auth = ["oci"]
azure_config = [
"azure-appconfiguration",
"azure-identity",
"azure-keyvault-secrets"
]
azure_auth = ["msal"]
[tool.setuptools]
zip-safe = false
packages = [
"oracledb",
"oracledb.plugins",
]
package-dir = {"" = "src"}
include-package-data = false
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "oracledb.version.__version__"}
[tool.black]
line-length = 79
required-version = 26
[tool.ruff]
line-length = 79
target-version = "py39"
exclude = ["templates"]
[tool.pytest.ini_options]
minversion = "8.3.0"
testpaths = [
"tests"
]