forked from superlinear-ai/poetry-cookiecutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
22 lines (22 loc) · 910 Bytes
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"package_name": "My Package",
"package_description": "A Python package that ...",
"package_url": "https://github.com/user/my-package",
"author_name": "John Smith",
"author_email": "[email protected]",
"python_version": "3.8",
"development_environment": ["simple", "strict"],
"with_conventional_commits": "{% if cookiecutter.development_environment == 'simple' %}0{% else %}1{% endif %}",
"with_fastapi_api": "0",
"with_jupyter_lab": "0",
"with_pydantic_typing": "0",
"with_sentry_logging": "0",
"with_streamlit_app": "0",
"with_typer_cli": "0",
"continuous_integration": ["GitHub", "GitLab"],
"docstring_style": ["NumPy", "Google"],
"private_package_repository_name": "",
"private_package_repository_url": "",
"__package_name_kebab_case": "{{ cookiecutter.package_name|slugify }}",
"__package_name_snake_case": "{{ cookiecutter.package_name|slugify(separator='_') }}"
}