-
Notifications
You must be signed in to change notification settings - Fork 6
/
cookiecutter.json
18 lines (18 loc) · 925 Bytes
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"full_name": "Cosmin Munteanu",
"email": "[email protected]",
"github_username": "MihailCosmin",
"project_name": "Python GUI Application",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "Python template that contains all the things you need to create a Python GUI Application.",
"pypi_username": "{{ cookiecutter.github_username }}",
"version": "0.1.0",
"gui_framework": ["PyQt5", "PyQt6", "PySide2", "PySide6", "Tkinter", "customTkinter", "PySimpleGUI", "wxPython", "Toga", "Kivy", "None - Will decide later"],
"use_poetry": "y",
"use_pytest": "y",
"use_pypi_deployment_with_travis": "y",
"add_pyup_badge": "y",
"create_author_file": "y",
"open_source_license": ["MIT license", "BSD license", "ISC license", "Apache Software License 2.0", "GNU General Public License v3", "Not open source"],
"keep_demo": "y"
}