forked from drivendataorg/cookiecutter-data-science
-
Notifications
You must be signed in to change notification settings - Fork 5
/
cookiecutter.json
21 lines (21 loc) · 1.04 KB
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"project_name": "project_name",
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"author_name": "Your name (or your organization/company/team)",
"author_email": "Your email address",
"short_description": "A short description of the project.",
"long_description": "",
"open_source_license": ["MIT", "BSD 3-Clause", "GNU GPL v3+", "Apache Software Licence 2.0", "BSD 2-Clause"],
"s3_bucket": "[OPTIONAL] your-bucket-for-syncing-data (do not include 's3://')",
"aws_profile": "default",
"conda_python_env": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"github_username": "vcalderon2009",
"github_project": "{{ cookiecutter.github_username }}/{{ cookiecutter.repo_name }}",
"project_version": "0.0.dev0",
"use_travis_ci": "y",
"use_read_the_docs": "y",
"project_url": "https://github.com/{{cookiecutter.github_project}}",
"minimum_python_version": ["3.6", "3.5"],
"python_interpreter": ["python3"],
"use_astropy_theme_or_RTD": ["RTD", "Astropy"]
}