Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
martinclaus committed Jan 3, 2024
1 parent 217ae77 commit af9dc1b
Showing 1 changed file with 9 additions and 17 deletions.
26 changes: 9 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ name = "jupyterhub-ltiauthenticator"
description = "JupyterHub authenticator implementing LTI v1.1 and LTI v1.3"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
license = { file = "LICENSE" }
keywords = ["jupyterhub", "authenticator"]
authors = [
{name = "Yuvi Panda", email = "[email protected]"},
{name = "Jupyter Contributors", email = "[email protected]"},
{ name = "Yuvi Panda", email = "[email protected]" },
{ name = "Jupyter Contributors", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand All @@ -35,14 +35,8 @@ dependencies = [
dynamic = ["version"]

[project.optional-dependencies]
dev = [
"pre-commit",
]
test = [
"pytest",
"pytest-asyncio",
"pytest-cov",
]
dev = ["pre-commit"]
test = ["pytest", "pytest-asyncio", "pytest-cov"]

[project.urls]
Documentation = "https://ltiauthenticator.readthedocs.io"
Expand All @@ -57,19 +51,17 @@ Issues = "https://github.com/jupyterhub/ltiauthenticator/issues"
[tool.black]
# target-version should be all supported versions, see
# https://github.com/psf/black/issues/751#issuecomment-473066811
target_version = [
"py38",
"py39",
"py310",
"py311",
]
target_version = ["py38", "py39", "py310", "py311"]


# hatch ref: https://hatch.pypa.io/latest/
#
[tool.hatch.version]
path = "ltiauthenticator/_version.py"

[tool.hatch.build]
include = ["ltiauthenticator"]

[tool.hatch.build.targets.sdist]
exclude = [
".flake8",
Expand Down

0 comments on commit af9dc1b

Please sign in to comment.