-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (65 loc) · 1.71 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (65 loc) · 1.71 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
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["maturin>=1.14,<2.0"]
build-backend = "maturin"
[project]
name = "graphrefly"
version = "0.23.0"
description = "Python host package for GraphReFly over the native Rust graph engine."
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [{ name = "David Chen" }]
keywords = ["reactive", "graph", "signals", "state-management"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://py.graphrefly.dev/"
Repository = "https://github.com/graphrefly/graphrefly-py"
Documentation = "https://py.graphrefly.dev/"
Spec = "https://graphrefly.dev/spec/"
[project.optional-dependencies]
async = [
"anyio>=4.14",
"trio>=0.33",
]
[dependency-groups]
dev = [
"maturin>=1.14,<2.0",
"mypy>=2.1",
"pytest>=9.1",
"ruff>=0.15",
]
docs = [
"griffe>=2.1.0",
]
[tool.uv]
package = false
[tool.maturin]
bindings = "pyo3"
features = ["extension-module"]
manifest-path = "../graphrefly-rs/crates/graphrefly-bindings-py/Cargo.toml"
module-name = "graphrefly._native"
python-source = "src"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.ruff.format]
quote-style = "double"
[tool.mypy]
python_version = "3.12"
strict = true
warn_return_any = true
warn_unused_configs = true