generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
79 lines (71 loc) · 2.07 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
[build-system]
requires = ["setuptools >= 77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "select_ai"
dynamic = ["version"]
description = "Select AI for Python"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9"
authors = [
{name="Abhishek Singh", email="abhishek.o.singh@oracle.com"}
]
maintainers =[
{name="Abhishek Singh", email="abhishek.o.singh@oracle.com"}
]
keywords = [
"oracle",
"select-ai",
"adbs",
"autonomous database serverless"
]
license = " UPL-1.0"
license-files = ["LICENSE.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",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"oracledb",
"pandas==2.2.3"
]
[project.optional-dependencies]
test = [
"anyio",
"pytest",
]
[project.urls]
Homepage = "https://github.com/oracle/python-select-ai"
Repository = "https://github.com/oracle/python-select-ai"
Issues = "https://github.com/oracle/python-select-ai/issues"
Documentation = "https://oracle.github.io/python-select-ai/"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "select_ai.version.__version__" }
[tool.black]
line-length = 79
target-version = ["py39", "py310", "py311", "py312", "py313"]
required-version = 24
[tool.ruff]
line-length = 79
target-version = "py39"
per-file-ignores = { "__init__.py" = ["F401"] }
[tool.pytest.ini_options]
minversion = "8.3.0"
testpaths = [
"tests"
]