Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,8 @@ select = ["E", "F", "I", "Q", "W"]
[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["oauth2_provider"]

[tool.uv.workspace]
members = [
"tests/app/idp",
]
22 changes: 22 additions & 0 deletions tests/app/idp/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[project]
name = "idp"
version = "0.1.0"
description = "Django OAuth Toolkit Identity Provider Test App"
readme = "README.md"
requires-python = ">=3.8,<=3.14"
dependencies = [
"Django>=4.2,<=5.2",
"django-cors-headers==3.14.0",
"django-environ==0.11.2",
"django-oauth-toolkit",
]


[tool.setuptools]
# we're not packaging this as a module, so tell setup tools not to do anything.
py-modules = []

[tool.uv.sources]
# connect to the django-oauth-toolkit package in the parent workspace
# so changes to it are reflected here without reinstalling.
django-oauth-toolkit = { editable = true, workspace = true }
Loading
Loading