-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.32 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1.32 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
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
license-files = []
[project]
name = "reaktiv"
version = "0.24.2"
description = "Signals for Python - inspired by Angular Signals / SolidJS. Reactive Declarative State Management Library for Python - automatic dependency tracking and reactive updates for your application state."
readme = "README.md"
authors = [{name = "Tuan Anh Bui", email = "mail@bui.app"}]
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dependencies = []
[dependency-groups]
dev = [
"pyright>=1.1.398",
"pytest>=7.0",
"pytest-asyncio>=0.20",
"pytest-timeout>=2.3.1",
"ruff>=0.12.11",
]
docs = [
"markdown-exec>=1.12.1; python_version >= '3.10'",
"mkdocs-material>=9.6",
"mkdocs-mermaid2-plugin>=1.2.3",
"mkdocstrings[python]>=0.29",
]
[project.urls]
Homepage = "https://github.com/buiapp/reaktiv"
[tool.pytest.ini_options]
asyncio_mode = "strict"
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "function"
addopts = "-v"