cookiecutter.json in cookiecutter-flit

at master

1{
2 "full_name": "Daniel Moch",
3 "email": "djmoch@example.com",
4 "github_username": "djmoch",
5 "project_name": "Flit Boilerplate",
6 "project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
7 "project_homepage": "https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug.replace('_', '-') }}",
8 "project_short_description": "Flit Boilerplate contains all the boilerplate you need to create a Python Flit package.",
9 "pypi_username": "{{ cookiecutter.github_username }}",
10 "version": "0.1.0",
11 "script_entrypoint": "y",
12 "open_source_license": ["MIT license", "BSD license", "ISC license", "Apache Software License 2.0", "GNU General Public License v3", "Not open source"],
13 "windows_support": "y",
14 "docs": "y"
15}