-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (64 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
74 lines (64 loc) · 1.85 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
[project]
name = "entangled-cli"
version = "2.4.2"
description = "Literate Programming toolbox"
authors = [{ name = "Johan Hidding", email = "j.hidding@esciencecenter.nl" }]
requires-python = ">=3.13,<4"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"filelock>=3.12.0,<4",
"rich>=13,<15",
"tomlkit>=0.12.1,<0.13",
"copier>=9,<10",
"brei>=0.2.3,<0.3",
"rich-argparse>=1.4.0,<2",
"pyyaml>=6.0.1,<7",
"repl-session>=0.2.0",
"msgspec>=0.20.0",
"click>=8.3.0",
"rich-click>=1.9.4",
"typeguard>=4.4.4",
"watchfiles>=1.1.1",
]
[project.urls]
Homepage = "https://entangled.github.io/"
Repository = "https://github.com/entangled/entangled.py"
[project.scripts]
entangled = "entangled.main:cli"
[dependency-groups]
dev = [
"pytest>=9.0,<10",
"mypy>=1.18,<2",
"black>=23.3.0,<24",
"pytest-cov>=4.0.0,<5",
"mkdocs>=1.4.3,<2",
"mkdocs-material>=9.7,<10",
"mkdocstrings[python]>=0.30",
"pytest-asyncio>=1.3,<2",
"ruff>=0.14",
"types-pyyaml>=6.0.12.20240311,<7",
"types-pygments>=2.18.0.20240506,<3",
"types-colorama>=0.4.15.20240311,<0.5",
"python-lsp-server>=1.13.1",
"pyright>=1.1.405",
"types-pexpect>=4.9.0.20250916",
"types-PyYAML>=6.0.1,<7",
"pytest-timeout>=2.4.0",
"ty>=0.0.1a24",
]
[tool.hatch.build.targets.sdist]
include = ["entangled"]
[tool.hatch.build.targets.wheel]
include = ["entangled"]
[tool.hatch.build.targets.wheel.shared-data]
"man/entangled.1" = "man/man1/entangled.1"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["test"]
[tool.mypy]
packages = ["entangled"]
[tool.uv.sources]
watchdog = { git = "https://github.com/gorakhargosh/watchdog" }