-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.11 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
# This is a documentation project, not a Python package
# By omitting [build-system], uv treats this as a "virtual project"
# Dependencies are installed but the project itself is not built/installed
[project]
name = "mjboos-website"
version = "2.0.0"
description = "Personal website of Moritz Boos - Data Scientist and Neuroscientist"
authors = [
{name = "Moritz Boos", email = "moritz.boos@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.11"
license = {text = "CC-BY-4.0"}
dependencies = [
"sphinx>=7.0",
"myst-nb>=1.0",
"pydata-sphinx-theme>=0.14",
"ablog>=0.11",
"sphinx-design>=0.5",
"sphinx-copybutton>=0.5",
"sphinxext-opengraph>=0.9",
"jupyter",
"ipykernel",
"nox",
]
[project.urls]
Homepage = "https://mjboos.github.io"
Repository = "https://github.com/mjboos/mjboos.github.io"
"Google Scholar" = "https://scholar.google.de/citations?user=iMjcWsAAAAAJ"
# Note: No [build-system] table - this tells uv not to build/install the project
[tool.uv]
# uv configuration for this project
[tool.sphinx]
# Sphinx build configuration hints
source-dir = "."
build-dir = "_build"