Files
cookiecutter-data-science/cookiecutter.json
Isaac Slavitt 08d357c5fa Drop support for Python 2
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.
2020-05-16 15:45:05 -04:00

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"
}