We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d832f5 + 9653026 commit ac42d02Copy full SHA for ac42d02
{{cookiecutter.project_name}}/pyproject.toml
@@ -5,11 +5,11 @@ description = "{{ cookiecutter.project_description }}"
5
authors = ["{{ cookiecutter.author }} <{{ cookiecutter.email }}>"]
6
7
packages = [
8
- { include = "app", from = "src" },
+ { include = "{{ cookiecutter.module_name }}", from = "src" },
9
]
10
11
[tool.poetry.scripts]
12
-app-api = "app.api:main"
+{{ cookiecutter.module_name }}-api = "{{ cookiecutter.module_name }}.api:main"
13
14
[tool.poetry.dependencies]
15
python = "~{{ cookiecutter.python_version }}"
{{cookiecutter.project_name}}/src/{{cookiecutter.module_name}}/main.py renamed to {{cookiecutter.project_name}}/src/{{cookiecutter.module_name}}/app.py
0 commit comments