40 lines
604 B
YAML
40 lines
604 B
YAML
# Questions
|
|
project_name:
|
|
type: str
|
|
help: What is your project name?
|
|
|
|
project_description:
|
|
type: str
|
|
help: Describe your project
|
|
default: A project based on ajal-template-python
|
|
|
|
minimum_python_version:
|
|
type: str
|
|
help: Minmum python version
|
|
choices:
|
|
- "3.10"
|
|
- "3.11"
|
|
- "3.12"
|
|
- "3.13"
|
|
|
|
dependency_manager:
|
|
type: str
|
|
help: Python dependency manager
|
|
choices:
|
|
- uv
|
|
- poetry
|
|
- hatch
|
|
- setuptools
|
|
- flit
|
|
- pdm
|
|
default: uv
|
|
|
|
author_name:
|
|
type: str
|
|
help: Author name
|
|
default: ""
|
|
|
|
author_email:
|
|
type: str
|
|
help: Author email
|
|
default: ""
|