forked from QuantStack/ypywidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 834 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"
dynamic = ["version"]
description = "Y-based Jupyter widgets for Python"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "David Brochart", email = "[email protected]" },
]
keywords = [
"widgets",
"jupyter",
"yjs",
]
dependencies = [
"comm >=0.1.4,<1",
"pycrdt >=0.8.30,<0.9.0",
"reacttrs >=0.2.1,<0.3.0",
]
[project.urls]
Homepage = "https://github.com/davidbrochart/ypywidgets"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
]
[tool.hatch.version]
path = "ypywidgets/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/ypywidgets",
]
[tool.hatch.build.targets.wheel]
ignore-vcs = true
packages = ["ypywidgets"]