ml_pipeline_cookiecutter/cookiecutter.json

12 lines
422 B
JSON
Raw Normal View History

2024-04-06 13:02:31 -07:00
{
"project_name": "project_name",
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"module_name": "{{ cookiecutter.repo_name }}",
"author_name": "Your name (or your organization/company/team)",
"description": "A short description of the project.",
"open_source_license": ["MIT", "BSD-3-Clause", "No license file"],
"_copy_without_render": [
"docs/book"
]
2024-04-06 13:10:02 -07:00
}