-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
42 lines (42 loc) · 1.38 KB
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"project_name": "Snakypy Cookiecutter",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_version": "0.1.0",
"project_short_description": "This is my description package.",
"project_homepage": "http://example.com",
"project_repository": "http://github.com/snakypy/{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"keywords": "{{ cookiecutter.project_slug }}",
"black_line_length": "88",
"flake8_line_length": "88",
"use_poetry": "Y/n",
"use_travis": "y/N",
"use_github_actions": "y/N",
"use_docker": "y/N",
"use_mypy": "y/N",
"use_isort": "y/N",
"use_pre_commit": "y/N",
"use_pytest": "y/N",
"use_cli": "y/N",
"add_badges": "y/N",
"use_sponsor": "y/N",
"python_requires": "3.9",
"system": [
"Posix (Linux | Mac OS X | BSD | Solaris)",
"DOS (Windows)",
"Both"
],
"open_source_license": [
"MIT license",
"BSD license",
"ISC license",
"Apache Software License 2.0",
"GNU General Public License v3",
"Not open source"
],
"your_full_name": "Snakypy Org",
"email": "[email protected]",
"github_profile": "snakypy",
"pypi_username": "Username Pypi",
"test_pypi_username": "{{ cookiecutter.pypi_username }}",
"author_website": "https://domain.com"
}