-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.46 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
[project]
name = "portone-server-sdk"
version = "0.2.0"
description = "PortOne Python SDK for server-side usage"
authors = [
{ name = "portone", email = "tech.support@portone.io" },
{ name = "kiwiyou", email = "kiwiyou@portone.io" },
]
dependencies = ["httpx>=0.27.0", "pyserde>=0.20.0"]
readme = "README.md"
requires-python = ">=3.9"
[project.urls]
Documentation = "https://portone-io.github.io/server-sdk-py"
Repository = "https://github.com/portone-io/server-sdk-py"
Issues = "https://github.com/portone-io/server-sdk-py/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
artifacts = [
"/src/portone_server_sdk/_generated",
"/src/portone_server_sdk/_openapi",
]
exclude = ["/openapi"]
[tool.hatch.build.targets.wheel]
artifacts = [
"/src/portone_server_sdk/_generated",
"/src/portone_server_sdk/_openapi",
]
[tool.pyright]
include = ["src", "scripts"]
venvPath = "."
venv = ".venv"
[tool.ruff]
include = [
"pyproject.toml",
"src/portone_server_sdk/**/*.py",
"scripts/**/*.py",
]
exclude = ["openapi", "src/portone_server_sdk/_openapi/**/*.py"]
[tool.uv]
dev-dependencies = [
"toml>=0.10.2",
"fire>=0.6.0",
"markdownify>=0.13.1",
"types-toml>=0.10.8.20240310",
"mkdocs>=1.6.0",
"mkdocstrings[python]>=0.25.2",
"mkdocs-material>=9.5.33",
"pyright>=1.1.378",
"ruff>=0.6.2",
"pre-commit>=3.8.0",
]