-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
21 lines (21 loc) · 1007 Bytes
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"full_name": "Thomas Camminady",
"email": "[email protected]",
"github_username": "thomascamminady",
"project_name": "My Project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"github_reponame": "{{cookiecutter.project_slug}}",
"project_short_description": "",
"pypi_username": "{{ cookiecutter.github_username }}",
"add_pyup_badge": "n",
"version": "0.1.0",
"open_source_license": [
"MIT license",
"BSD license",
"ISC license",
"Apache Software License 2.0",
"GNU General Public License v3",
"Not open source"
],
" ": "\n\n\n\n\tThere are three things you need to do now:\n\t\n\t1) Create a Github repo with the name {{cookiecutter.project_slug}}.\n\t2) In that repo, go to Settings -> Pages -> Build and deployment -> Source and choose Github Actions.\n\t3) cd {{cookiecutter.project_slug}}; make\n\n\tPress enter and start hacking!\n \n \n"
}