-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (21 loc) · 663 Bytes
/
pyproject.toml
File metadata and controls
24 lines (21 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[project]
name = "konjingjing"
version = "1.0.0"
description = "Thai Citizen ID validation library"
authors = [{ name = "Nutchanon Ninyawee", email = "me@nutchanon.org" }]
license = "ISC"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
keywords = ["thai", "validation", "citizen-id", "thailand"]
[dependency-groups]
dev = ["pytest>=8.0", "maturin>=1.0"]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module", "pyo3/abi3-py39"]
include = ["konjingjing.pyi", "py.typed"]