Skip to content

Commit

Permalink
fix: package name inblack cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
geronimo-iia committed Mar 4, 2024
1 parent b0b1a82 commit f1293ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions {{cookiecutter.github_repo}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ warn_unused_configs = true


[tool.poe.tasks]
_isort = "poetry run isort my_project tests"
_black = "poetry run black my_project tests"
_ruff = "poetry run ruff check my_project"
_mypy = "poetry run mypy --show-error-codes --config-file pyproject.toml my_project"
_isort = "poetry run isort {{cookiecutter.package_name}} tests"
_black = "poetry run black {{cookiecutter.package_name}} tests"
_ruff = "poetry run ruff check {{cookiecutter.package_name}}"
_mypy = "poetry run mypy --show-error-codes --config-file pyproject.toml {{cookiecutter.package_name}}"
_build = "poetry build"
_publish = "poetry publish"
build.help = "Build module"
Expand Down

0 comments on commit f1293ad

Please sign in to comment.