This website works better with JavaScript.
Home
Help
Sign In
ryanreed
/
cookiecutter-python-template
Watch
1
Star
1
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Activity
Browse Source
Adding license support
main
Ryan Reed
2 years ago
parent
4a607995a5
commit
d081027d60
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
cookiecutter.json
+1
-1
{{cookiecutter.package_name}}/LICENSE
+1
-1
{{cookiecutter.package_name}}/pyproject.toml
+ 1
- 1
cookiecutter.json
View File
@ -7,7 +7,7 @@
"author_email"
:
"author@website.com"
,
"author_name"
:
"Project Author"
,
"license"
:
[
"G
NU G
PL
v3
.0
"
,
"MIT"
,
"None"
]
,
"license"
:
[
"GPLv3"
,
"MIT"
,
"None"
]
,
"git_branch"
:
"main"
,
"github_repo_user"
:
""
,
+ 1
- 1
{{cookiecutter.package_name}}/LICENSE
View File
@ -1,4 +1,4 @@
{% if cookiecutter.license == 'G
NU G
PL
v3
.0
' %}
{% if cookiecutter.license == 'GPLv3' %}
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
+ 1
- 1
{{cookiecutter.package_name}}/pyproject.toml
View File
@ -3,7 +3,7 @@ name = "{{cookiecutter.package_name}}"
version
=
"0.0.1"
description
=
"{{cookiecutter.package_description}}"
authors
=
[
"{{cookiecutter.author_name}} <{{cookiecutter.author_email}}>"
]
#license = "GPLv3
"
license
=
"{{cookiecutter.license}}
"
readme
=
"README.md"
[
tool
.
poetry
.
dependencies
]
Write
Preview
Loading…
Cancel
Save