Files
2021-04-07 14:38:42 -07:00

39 lines
1.0 KiB
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",
"dataset_storage": [
{"none": "none"},
{"azure": {"container": "container-name"}},
{"s3": {"bucket": "bucket-name", "aws_profile": "default"}},
{"gcs": {"bucket": "bucket-name"}}
],
"environment_manager" : [
"virtualenv",
"conda",
"pipenv",
"none"
],
"dependency_file": [
"requirements.txt",
"environment.yml",
"Pipfile"
],
"pydata_packages": [
"none",
"basic"
],
"ethics_checklist": [
"yes",
"no"
],
"nbautoexport": [
"yes",
"no"
],
"open_source_license": ["MIT", "BSD-3-Clause", "No license file"]
}