forked from QuantStack/ypywidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 858 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ypywidgets"
version = "0.9.4"
description = "Y-based Jupyter widgets for Python"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "David Brochart", email = "david.brochart@gmail.com" },
]
keywords = [
"widgets",
"jupyter",
"yjs",
]
dependencies = [
"comm >=0.1.4,<1",
"pycrdt >=0.9.0,<0.11.0",
"reacttrs >=0.2.1,<0.3.0",
]
[project.urls]
Homepage = "https://github.com/davidbrochart/ypywidgets"
[project.optional-dependencies]
dev = [
"coverage >=7.0.0,<8.0.0",
"mypy",
"pytest",
"pytest-asyncio",
]
[tool.hatch.build.targets.wheel]
ignore-vcs = true
packages = ["src/ypywidgets"]
[tool.coverage.run]
source = ["src/ypywidgets", "tests"]
[tool.coverage.report]
show_missing = true