-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.27 KB
/
pyproject.toml
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
[project]
name = "quick-xmltodict"
description = "Efficient XML-to-dict conversion backed by Rust"
authors = [{name = "Daniel Hjertholm", email = "[email protected]"}]
readme = "README.md"
license = "MIT"
keywords = ["xmltodict", "xml-to-dict", "xml", "fast", "rust"]
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Topic :: Text Processing :: Markup :: XML",
"Typing :: Typed",
]
dependencies = []
dynamic = ["version"] # Source version from Cargo.toml's package.version
[project.urls]
Repository = "https://github.com/statnett/quick-xmltodict"
[dependency-groups]
dev = [
"maturin>=1.8.1",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"ruff>=0.9.1",
"xmltodict>=0.14.2",
]
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["I", "RUF", "UP", "B", "PERF"]
fixable = ["ALL"]
[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"