Skip to content

Commit bde5aaa

Browse files
committed
added cryptography option
1 parent 92fdbe9 commit bde5aaa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

cookiecutter.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"app_description": "A short description",
88
"app_version": "0.1.0",
99
"app_documents_location": ["readthedocs.io", "github-pages"],
10-
"use_requests": "no",
10+
"use_requests": "n",
11+
"use_cryptography": "n",
1112
"__template_repo": "https://github.com/btr1975/cookiecutter-python-fastapi-openapi",
1213
"__template_version": "1.0.0"
1314
}

{{cookiecutter.git_repo_name}}/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
fastapi
55
uvicorn
66
{% if cookiecutter.use_requests == 'y' %}requests{% endif %}
7+
{% if cookiecutter.use_cryptography == 'y' %}cryptography{% endif %}

0 commit comments

Comments
 (0)