forked from pydanny/cookiecutter-djangopackage
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcookiecutter.json
More file actions
18 lines (18 loc) · 1000 Bytes
/
cookiecutter.json
File metadata and controls
18 lines (18 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"full_name": "Your Name",
"email": "you@example.com",
"github_org": "django-getpaid",
"gateway_name": "MyGateway",
"gateway_slug": "{{ cookiecutter.gateway_name | lower | replace(' ', '_') | replace('-', '_') }}",
"package_name": "getpaid_{{ cookiecutter.gateway_slug }}",
"repo_name": "python-getpaid-{{ cookiecutter.gateway_slug | replace('_', '-') }}",
"pypi_name": "python-getpaid-{{ cookiecutter.gateway_slug | replace('_', '-') }}",
"project_description": "{{ cookiecutter.gateway_name }} payment gateway integration for python-getpaid ecosystem.",
"processor_class_name": "{{ cookiecutter.gateway_name | replace(' ', '') | replace('_', '') }}Processor",
"client_class_name": "{{ cookiecutter.gateway_name | replace(' ', '') | replace('_', '') }}Client",
"sandbox_url": "https://sandbox.example.com/",
"production_url": "https://api.example.com/",
"accepted_currencies": "[]",
"version": "0.1.0",
"open_source_license": ["MIT", "BSD-3-Clause", "Apache-2.0"]
}