Skip to content

Commit ffbf8ce

Browse files
committed
Update print
1 parent 576c1a6 commit ffbf8ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

create_fastapi_project/__init__.py

-1
This file was deleted.

create_fastapi_project/templates/__init__.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,11 @@ def install_template(root: str, template: ITemplate, app_name: str):
4141
has_pyproject = add_configuration_to_pyproject(poetry_path)
4242

4343
if has_pyproject:
44-
print("Installing packages. This might take a couple of minutes.")
4544
dependencies = ["fastapi[all]", "fastapi-pagination[sqlalchemy]@^0.12.7", "asyncer@^0.0.2", "httpx@^0.24.1"]
46-
dev_dependencies = ["pytest@^5.2", "mypy@^1.5.0", "ruff@^0.0.284", "black@^23.7.0"]
45+
dev_dependencies = ["pytest@^5.2", "mypy@^1.5.0", "ruff@^0.0.284", "black@^23.7.0"]
46+
print("- Installing main packages. This might take a couple of minutes.")
4747
install_dependencies(poetry_path, dependencies)
48+
print("- Installing development packages. This might take a couple of minutes.")
4849
install_dependencies(poetry_path, dev_dependencies, dev=True)
4950
# Set your dynamic environment variables
5051

0 commit comments

Comments
 (0)