@@ -3,9 +3,9 @@ name = "my-pkg" # todo: change to your package name
33dynamic = [" version" ]
44description = " "
55authors = [
6- {name = " DanielAvdar" , email = " 66269169+DanielAvdar@users.noreply.github.com" }, # todo: change to your name and email
6+ { name = " DanielAvdar" , email = " 66269169+DanielAvdar@users.noreply.github.com" }, # todo: change to your name and email
77]
8- license = {text = " MIT" }
8+ license = { text = " MIT" }
99readme = " README.md"
1010classifiers = [
1111 " Programming Language :: Python :: 3" ,
@@ -33,20 +33,19 @@ dev = [
3333 " mypy==1.13.0" ,
3434 " pytest-parametrization>=2022" ,
3535 " ruff>=0.8.2" ,
36-
36+ " sybil[pytest] " ,
3737]
3838docs = [
39- " sybil[pytest]" ,
4039 " sphinx>=8.2.0; python_version >= '3.11'" ,
4140 " sphinx>=7.0.0; python_version < '3.11'" ,
4241 " sphinx-rtd-theme>=3.0.2" ,
4342]
4443[tool .hatch .build .targets .sdist ]
45- only-include = [" my_pkg" ,] # todo: change to your package name
44+ only-include = [" my_pkg" , ] # todo: change to your package name
4645source = " ."
4746
4847[tool .hatch .build .targets .wheel ]
49- only-include = [" my_pkg" ,] # todo: change to your package name
48+ only-include = [" my_pkg" , ] # todo: change to your package name
5049source = " ."
5150
5251
@@ -62,13 +61,15 @@ source = "uv-dynamic-versioning"
6261
6362[tool .ruff ]
6463line-length = 120
65- include = [" pyproject.toml" , " tests/**" ,]
64+ include = [" pyproject.toml" , " tests/**" , ]
6665
6766[tool .ruff .lint ]
68- select = [" F" , " B" , " I" , " F" , " W" , " E" ," A" ," N " ]
67+ select = [" F" , " B" , " I" , " F" , " W" , " E" , " A" , " N " , " D " ]
6968
7069fixable = [" ALL" ]
71-
70+ [tool .ruff .lint .per-file-ignores ]
71+ "tests/*" = [" D" ]
72+ "docs/*" = [" D" ]
7273[tool .ruff .lint .isort ]
7374combine-as-imports = true
7475[tool .mypy ]
0 commit comments