-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 880 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 880 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[build-system]
build-backend = "maturin"
requires = [ "maturin>=1.12,<1.13" ]
[project]
name = "vodozemac"
description = "Python bindings for vodozemac"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"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",
]
dynamic = [ "version" ]
urls.repository = "https://github.com/matrix-nio/vodozemac-python"
[dependency-groups]
dev = [
{ include-group = "nox" },
{ include-group = "tests" },
]
nox = [
"nox-uv>=0.6",
]
tests = [
"hypothesis>=6.135.21",
"maturin>=1.12.1",
"pytest>=8.4.1",
]
[tool.maturin]
name = "vodozemac"
bindings = "pyo3"
python-source = "."