Skip to content

Commit

Permalink
dropped PDM
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethlove committed Sep 5, 2023
1 parent 4253a12 commit bf854d0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"ghcr.io/wxw-matt/devcontainer-features/command_runner:0": {},
"ghcr.io/wxw-matt/devcontainer-features/script_runner:0": {}
},
"postCreateCommand": "pipx install pdm && pdm install -G development -G testing"
"postCreateCommand": "pip install -e .[development,testing]"
}
50 changes: 25 additions & 25 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,31 @@ readme = "README.md"
requires-python = ">=3.11"
version = "0.1.0"

[project.optional-dependencies]
development = [
"black",
"django-stubs[compatible-mypy]",
"djangorestframework-stubs[compatible-mypy]",
"interrogate",
"mypy",
"ruff",
]
documentation = [
"mkdocs-material>=9.1.16",
"mkdocs>=1.4.3",
"pygments>=2.15.1",
"pymdown-extensions>=10.0.1",
]
testing = [
"coverage",
"pytest",
"pytest-cov",
"pytest-django",
"pytest-lazy-fixture",
"pytest-randomly",
"pytest-xdist",
]

[project.urls]
repository = "https://github.com/brack3t/django-brackets/"

Expand Down Expand Up @@ -106,31 +131,6 @@ warn_redundant_casts = false
warn_return_any = true
warn_unused_ignores = true

[tool.pdm.dev-dependencies]
development = [
"black",
"django-stubs[compatible-mypy]",
"djangorestframework-stubs[compatible-mypy]",
"interrogate",
"mypy",
"ruff",
]
documentation = [
"mkdocs-material>=9.1.16",
"mkdocs>=1.4.3",
"pygments>=2.15.1",
"pymdown-extensions>=10.0.1",
]
testing = [
"coverage",
"pytest",
"pytest-cov",
"pytest-django",
"pytest-lazy-fixture",
"pytest-random-order",
"pytest-xdist",
]

[tool.pyright]
exclude = [".venv", "build", "dist", "docs", "tests"]
include = ["src"]
Expand Down

0 comments on commit bf854d0

Please sign in to comment.