diff --git a/{{cookiecutter.project_name}}/README.md b/{{cookiecutter.project_name}}/README.md index a0c4cca..bc271a4 100644 --- a/{{cookiecutter.project_name}}/README.md +++ b/{{cookiecutter.project_name}}/README.md @@ -1,4 +1,6 @@ -# {{cookiecutter.project_name}} +# {{ cookiecutter.project_name }} + +{{ cookiecutter.project_description }} ## Development diff --git a/{{cookiecutter.project_name}}/pyproject.toml b/{{cookiecutter.project_name}}/pyproject.toml index 43cd581..ce4d0d4 100644 --- a/{{cookiecutter.project_name}}/pyproject.toml +++ b/{{cookiecutter.project_name}}/pyproject.toml @@ -51,7 +51,7 @@ mypy = { cmd = "mypy" } pytest = { cmd = "pytest" } [tool.coverage.run] -source = ["jmapc"] +source = ["{{ cookiecutter.project_slug }}"] [tool.coverage.report] fail_under = 0 diff --git a/{{cookiecutter.project_name}}/py.typed b/{{cookiecutter.project_name}}/{{cookiecutter.project_slug}}/py.typed similarity index 100% rename from {{cookiecutter.project_name}}/py.typed rename to {{cookiecutter.project_name}}/{{cookiecutter.project_slug}}/py.typed