Skip to content

Commit

Permalink
Improve Python module description and mypy config
Browse files Browse the repository at this point in the history
  • Loading branch information
armanddidierjean committed Aug 14, 2024
1 parent 5625fb4 commit bd82c3c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CalypSSO

A Next.js small and static frontend for Hyperion
A small and static Next.js frontend for Hyperion

## Next.js development

Expand Down
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "hatchling.build"
[project]
name = "CalypSSO"
dynamic = ["version"]
description = "FastAPI app to serve static react webpages for Hyperion"
description = "A small and static Next.js frontend for Hyperion"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
Expand Down Expand Up @@ -97,5 +97,8 @@ skip-magic-trailing-comma = false
line-ending = "auto"

[tool.mypy]
python_version = "3.11"
strict = true
python_version = "3.12"
strict = true
exclude = '''(?x)(
dist/*$
)''' # TOML's single-quoted strings do not require escaping backslashes

0 comments on commit bd82c3c

Please sign in to comment.