-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (86 loc) · 1.9 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (86 loc) · 1.9 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["hatchling>=1.26"]
build-backend = "hatchling.build"
[project]
name = "omegaflow"
version = "0.9.0"
description = "Scripted terminal and video flow authoring for OmegaFlow"
readme = "README.md"
requires-python = ">=3.11"
license = "MPL-2.0"
license-files = ["LICENSE", "NOTICE.md"]
authors = [
{ name = "Omry Yadan" },
]
dependencies = [
"hydra-core==1.4.0.dev5",
"omegaconf>=2.4.0.dev14",
"pygments>=2.18",
"pyyaml>=6.0",
]
[project.optional-dependencies]
browser = [
"playwright==1.61.0",
]
dev = [
"build>=1.2",
"hatchling>=1.26",
"nox>=2025.5.1",
"pytest>=8.0",
"towncrier>=25.8",
]
[project.scripts]
omegaflow = "omegaflow.studio:main"
[project.urls]
Documentation = "https://omegaflow.dev/"
Source = "https://github.com/omry/omegaflow"
[tool.hatch.build.hooks.custom]
path = "hatch_build.py"
[tool.hatch.build.targets.wheel]
packages = ["src/omegaflow"]
dev-mode-dirs = ["src"]
artifacts = [
"/src/omegaflow/bin/asciinema",
"/src/omegaflow/bin/asciinema.platform",
]
[tool.hatch.build.targets.sdist]
include = [
"/CHANGELOG.md",
"/LICENSE",
"/NOTICE.md",
"/README.md",
"/hatch_build.py",
"/noxfile.py",
"/pyproject.toml",
"/src",
"/tests",
"/tools",
]
[tool.towncrier]
directory = "changes"
filename = "CHANGELOG.md"
start_string = "<!-- towncrier release notes start -->\n"
title_format = "## {version} ({project_date})"
issue_format = "[#{issue}](https://github.com/omry/omegaflow/issues/{issue})"
wrap = true
all_bullets = true
orphan_prefix = "+"
ignore = ["README.md"]
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Maintenance"
showcontent = true
[tool.pytest.ini_options]
testpaths = ["tests"]