mirror of
https://github.com/wassname/cookiecutter-data-science.git
synced 2026-06-27 20:04:45 +08:00
08d357c5fa
Official support for Python 2 ended on Jan 1, 2020 (see https://www.python.org/doc/sunset-python-2/ for more info). This change does not prevent anybody from using Python 2, but we should not be encouraging new projects to use it.
10 lines
429 B
JSON
10 lines
429 B
JSON
{
|
|
"project_name": "project_name",
|
|
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
|
|
"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"],
|
|
"s3_bucket": "[OPTIONAL] your-bucket-for-syncing-data (do not include 's3://')",
|
|
"aws_profile": "default"
|
|
}
|