-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 859 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
42
43
44
45
46
47
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ypywidgets"
version = "0.9.7"
description = "Y-based Jupyter widgets for Python"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "David Brochart", email = "david.brochart@gmail.com" },
]
keywords = [
"widgets",
"jupyter",
"yjs",
]
dependencies = [
"comm >=0.1.4,<1",
"pycrdt >=0.9.0,<0.13.0",
"reacttrs >=0.2.1,<0.3.0",
]
[project.urls]
Homepage = "https://github.com/QuantStack/ypywidgets"
[dependency-groups]
dev = [
"anyio",
"coverage >=7.0.0,<8.0.0",
"mypy",
"pytest",
"ruff",
"trio",
]
[tool.hatch.build.targets.wheel]
ignore-vcs = true
packages = ["src/ypywidgets"]
[tool.coverage.run]
source = ["src/ypywidgets", "tests"]
[tool.coverage.report]
show_missing = true