-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.47 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
[project]
name = "pytch-build"
version = "0.1.0"
description = "Assemble Pytch website from content, IDE, and tutorials"
authors = [
{name = "Ben North",email = "ben.north@tcd.ie"}
]
license = {text = "GPL-3.0-or-later"}
readme = "README.rst"
requires-python = ">=3.12,<4.0"
dependencies = [
"pygit2 (>=1.19.1,<2.0.0)",
"markdown (>=3.10,<4.0)",
"beautifulsoup4 (>=4.14.3,<5.0.0)",
"click (>=8.3.1,<9.0.0)",
"watchdog (>=6.0.0,<7.0.0)",
"websockets (>=15.0.1,<16.0.0)",
"janus (>=2.0.0,<3.0.0)",
"pyyaml (>=6.0.3,<7.0.0)",
"colorlog (>=6.10.1,<7.0.0)",
"pillow (>=12.0.0,<13.0.0)",
"requests (>=2.32.5,<3.0.0)"
]
[project.scripts]
pytchbuild = "pytchbuild.cli:main"
pytchbuild-watch = "pytchbuild.watch:main"
pytchbuild-gather-tutorials = "pytchbuild.gather_tutorials:main"
pytchbuild-new-tutorial = "pytchbuild.new_tutorial:main"
pytchbuild-gather-asset-media = "pytchbuild.gather_asset_media:main"
pytchbuild-gather-asset-credits = "pytchbuild.gather_asset_credits:main"
pytchbuild-verify-branch-heads = "pytchbuild.verify_branch_heads:main"
pytchbuild-emit-commit-slugs-markdown = "pytchbuild.emit_commit_slugs_markdown:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [
{ include = "pytchbuild" },
]
[tool.poetry.group.dev.dependencies]
tox = "^4.32.0"
pytest = "^9.0.2"
flake8 = "^7.3.0"
sphinx = "^9.1.0"
sphinx-rtd-theme = "^3.0.2"
sphinx-autobuild = "^2025.8.25"