-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
27 lines (27 loc) · 1.42 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
{
"full_name": "King Arthur",
"email": "[email protected]",
"github_username": "king-arthur",
"project_name": "Holy Grail",
"dist_name": "{{cookiecutter.project_name.lower().replace(' ', '-')}}",
"package_name": "{{cookiecutter.dist_name.replace('-', '_')}}",
"project_short_description": "",
"repository_name": "{{cookiecutter.github_username}}/{{cookiecutter.dist_name}}",
"python_version": ["3.9", "3.10", "3.11", "3.12"],
"smart_contract_language": "solidity",
"web3_provider": ["alchemy", "infura"],
"local_blockchain_node": "foundry",
"fork_network": "sepolia-fork",
"chain": "ethereum",
"__prompts__": {
"full_name": "Provide your [bold plum2]full name[/]",
"email": "Provide your [bold plum2]email[/]",
"python_version": "Provide the [bold plum2]minimum Python version[/]",
"project_name": "Provide the [bold plum2]human-readible project name[/]",
"dist_name": "Provide the [bold plum2]project slug[/] (only ASCII letters/digits, underscores, hyphens, and periods)",
"package_name": "Provide the [bold plum2]package name[/] (only ASCII letters/digits, and underscores)",
"project_short_description": "Provide a [bold plum2]short project description[/]",
"project_repo": "Optionally, provide the [bold plum2]repository url[/]",
"github_username": "Optionally, provide a [bold plum2]Github user name[/]"
}
}