cookiecutter.json 621 B

12345678910111213
  1. {
  2. "project_name": "project_name",
  3. "repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
  4. "author_name": "Your username (or your organization/company/team)",
  5. "description": "A short description of the project.",
  6. "open_source_license": ["No license file", "MIT", "BSD-3-Clause"],
  7. "s3_bucket": "[OPTIONAL] your-bucket-for-syncing-data (do not include 's3://')",
  8. "aws_profile": "default",
  9. "minio": "[OPTIONAL] your-minio-for-syncing data",
  10. "minio_profile": "default",
  11. "python_interpreter": ["python"],
  12. // "git_remote_repo": "Your remote repo for this project"
  13. }