-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopier.yaml
More file actions
44 lines (35 loc) · 843 Bytes
/
Copy pathcopier.yaml
File metadata and controls
44 lines (35 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
_subdirectory: template
# First Run
is_first_run:
type: bool
default: "{{ _copier_answers.project_name is not defined }}"
when: false
secret: true
project_name:
type: str
help: "Project name:"
default: My Project
when: "{{ is_first_run }}"
module_name:
type: str
help: "Python module name:"
default: my_module
when: "{{ is_first_run }}"
python_version:
type: str
help: "Python version:"
default: "3.14"
when: "{{ is_first_run }}"
description:
type: str
help: "Enter a description for your Python module (optional):"
when: "{{ is_first_run }}"
# Generation Options
generate_api_module:
help: Generate FastAPI REST module?
type: bool
default: true
generate_agentic_dirs:
help: Generate directories for Pydantic AI agent development under src/{{ module_name }}?
type: bool
default: true