Skip to content

Commit

Permalink
template pyproject dependency location moved
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkersigirci committed Nov 29, 2024
1 parent 6b9e01a commit 962a73f
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions {{cookiecutter.project_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,29 @@ classifiers = [

dependencies = []

[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"mypy>=1.13.0",
"pre-commit>=4.0.1",
"ruff>=0.8.0",
# "scalene~=1.5.21.2",
]
doc = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.42",
"mkdocstrings[python]>=0.26.2",
# "mdx-include",
# "mkdocs-markdownextradata-plugin",
]
test = [
"pytest-cov>=5.0.0",
"pytest-rerunfailures>=14.0",
"pytest-xdist>=3.6.1",
"pytest>=8.3.3",
# "pytest-timeout",
]

[tool.uv]
default-groups = ["dev", "doc", "test"]

Expand Down Expand Up @@ -186,26 +209,3 @@ exclude_lines = [
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"mypy>=1.13.0",
"pre-commit>=4.0.1",
"ruff>=0.8.0",
# "scalene~=1.5.21.2",
]
doc = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.42",
"mkdocstrings[python]>=0.26.2",
# "mdx-include",
# "mkdocs-markdownextradata-plugin",
]
test = [
"pytest-cov>=5.0.0",
"pytest-rerunfailures>=14.0",
"pytest-xdist>=3.6.1",
"pytest>=8.3.3",
# "pytest-timeout",
]

0 comments on commit 962a73f

Please sign in to comment.