mirror of
https://github.com/wassname/cookiecutter-data-science.git
synced 2026-06-27 18:04:27 +08:00
27 lines
892 B
JSON
27 lines
892 B
JSON
{
|
|
"project_name": "project_name",
|
|
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
|
|
"module_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
|
|
"author_name": "Your name (or your organization/company/team)",
|
|
"description": "A short description of the project.",
|
|
"python_version_number": "3.7",
|
|
"data_storage": [
|
|
{"none": {}},
|
|
{"azure": {"container": "container-name"}},
|
|
{"s3": {"bucket": "bucket-name", "aws_profile": "default"}},
|
|
{"gcs": {"bucket": "bucket-name"}}
|
|
],
|
|
"environment_manager" : [
|
|
"none",
|
|
"conda",
|
|
"virtualenv",
|
|
"pipenv"
|
|
],
|
|
"dependency_file": [
|
|
"none",
|
|
"requirements.txt",
|
|
"environment.yml",
|
|
"Pipfile"
|
|
],
|
|
"open_source_license": ["MIT", "BSD-3-Clause", "No license file"]
|
|
} |