-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcookiecutter.json
More file actions
28 lines (28 loc) · 856 Bytes
/
cookiecutter.json
File metadata and controls
28 lines (28 loc) · 856 Bytes
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
{
"plugin_name": "myplugin",
"project_slug": "pylsp-{{cookiecutter.plugin_name}}",
"author_name": "Lie Ryan",
"author_email": "lie.1296@gmail.com",
"repository_type": [
"Github",
"Do not set up repository"
],
"repository_url": "{{('https://github.com/' + 'python-lsp' + '/' + cookiecutter.project_slug if cookiecutter.repository_type == 'Github' else '')}}",
"test_type": [
"pytest",
"Do not set up test framework"
],
"publishing_type": [
"Publish to PyPI using twine",
"Do not set up publishing"
],
"description": "Package description for PyPI",
"open_source_license": [
"MIT license",
"BSD license",
"ISC license",
"Apache Software License 2.0",
"GNU General Public License v3",
"Not open source"
]
}