-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.87 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
# ============================================================
# pyproject.toml (Python and MkDocs project configuration)
# ============================================================
# VARIANT: python-mkdocs-dc
# SOURCE: https://github.com/denisecase/templates
# REQ.PYTHON: Python projects MUST include pyproject.toml as the single source of truth.
# WHY: Centralizes project configuration.
[project]
name = "applied-computing-foundations"
readme = "README.md"
requires-python = ">=3.14"
version = "0.1.0"
# CUSTOM: Project metadata.
authors = [{ name = "Denise Case", email = "dcase@nwmissouri.edu" }]
description = "Documentation for computing foundations."
keywords = ["applied computing", "foundations", "education", "analytics"]
license-files = ["LICENSE"]
# REQ.DEPS: Keep runtime dependencies minimal.
# OBS: This toolkit uses only the Python standard library.
dependencies = []
[project.optional-dependencies]
dev = [
# REQ.DEV.DEPS: External packages used for linting, testing, type checking, etc.
"pre-commit>=4.5.1",
"validate-pyproject>=0.24.1",
]
docs = [
# REQ.DOCS.DEPS: External packages used to generate project documentation.
"mike>=2.1.3",
"mkdocs>=1.6.1",
"mkdocs-gen-files>=0.6.0",
"mkdocs-git-revision-date-localized-plugin >=1.5.0",
"mkdocs-include-markdown-plugin>=7.2.0",
"mkdocs-literate-nav>=0.6.2",
"mkdocs-material>=9.7.1",
"mkdocs-static-i18n>=1.3.0",
"mkdocstrings[python]>=1.0.0",
"pymdown-extensions>=10.20",
"ruff>=0.14.11",
]
[project.urls]
"Home" = "https://denisecase.github.io/applied-computing-foundations/"
"Repo" = "https://github.com/denisecase/applied-computing-foundations"
"Issues" = "https://github.com/denisecase/applied-computing-foundations/issues"
[tool.uv]
package = false # REQ.UV: Disable universal versioning for non-packages.
# WHY: This project is not intended to be distributed as a package.