Files
cookiecutter-data-science/cookiecutter.json
2019-03-24 13:50:24 -07:00

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