-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.06 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
[project]
name = "p2w"
version = "0.2.2"
description = "Python-to-WebAssembly compiler using WASM GC"
readme = "README.md"
authors = [
{ name = "Stefane Fermigier", email = "sf@abilian.com" }
]
requires-python = ">=3.12"
dependencies = [
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://git.sr.ht/~sfermigier/p2w"
Repository = "https://git.sr.ht/~sfermigier/p2w"
[project.scripts]
p2w = "p2w:main"
p2w-benchmark = "p2w.benchmark.cli:main"
[build-system]
requires = ["uv_build>=0.9.26,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
# Testing
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"nox>=2025.11.12",
# Linting / type checking
"mypy>=1.19.1",
# "pyrefly>=0.49.0",
"ty>=0.0.13",
"ruff>=0.14.14",
"pre-commit>=4.5.1",
"hypothesis>=6.151.9",
"types-pyyaml>=6.0.12.20250915",
]
[tool.pytest.ini_options]
markers = [
"unit: Unit tests (fast, isolated)",
"integration: Integration tests (component interactions)",
"e2e: End-to-end tests (full workflows)",
]
testpaths = [
"tests",
"src",
]