-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (87 loc) · 2.43 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (87 loc) · 2.43 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
[project]
name = "terrakernel-odxproxyclient"
version = "0.1.0"
description = "Python client SDK for the ODXProxy reverse proxy (Odoo JSON-RPC 2.0 wire protocol). Sync + async, framework-friendly."
requires-python = ">=3.12"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Terrakernel", email = "devops@terrakernel.com.sg" },
]
maintainers = [
{ name = "Terrakernel", email = "devops@terrakernel.com.sg" },
]
keywords = [
"odoo",
"odoo-client",
"odxproxy",
"json-rpc",
"jsonrpc",
"sdk",
"async",
"httpx",
"fastapi",
"flask",
"reverse-proxy",
"erp",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Framework :: AsyncIO",
"Framework :: FastAPI",
"Framework :: Flask",
"Typing :: Typed",
]
dependencies = [
"httpx[brotli,http2]>=0.27",
"orjson>=3.10",
]
[project.urls]
Homepage = "https://www.odxproxy.io"
Documentation = "https://www.odxproxy.io/docs"
Repository = "https://github.com/terrakernel/ODXProxyClient-Python"
Issues = "https://github.com/terrakernel/ODXProxyClient-Python/issues"
Changelog = "https://github.com/terrakernel/ODXProxyClient-Python/releases"
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-asyncio>=0.23",
"respx>=0.21",
"mypy>=1.10",
"ruff>=0.5",
]
publish = [
"build>=1.2",
"twine>=5.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
# PEP 420 namespace: terrakernel/ has no __init__.py so other Terrakernel
# distributions can publish siblings under the same namespace.
packages = ["terrakernel"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: requires a real ODXProxy + Odoo. Reads tests/integration/credentials.toml; auto-skipped when absent.",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.mypy]
strict = true
python_version = "3.12"