Skip to content

Commit

Permalink
Also apply for target and mapper templates
Browse files Browse the repository at this point in the history
  • Loading branch information
ReubenFrankel committed Jan 31, 2025
1 parent 5144361 commit 9ceb127
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,20 @@ keywords = [
]
classifiers = [
"Intended Audience :: Developers",
{%- if cookiecutter.license == "Apache-2.0" %}
"License :: OSI Approved :: Apache Software License",
{%- endif %}
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
license = "Apache-2.0"
{%- if cookiecutter.license != "None" %}
license = "{{cookiecutter.license}}"
license-files = [ "LICENSE" ]
{%- endif %}
requires-python = ">=3.9"
dependencies = [
{%- if cookiecutter.faker_extra %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,20 @@ keywords = [
]
classifiers = [
"Intended Audience :: Developers",
{%- if cookiecutter.license == "Apache-2.0" %}
"License :: OSI Approved :: Apache Software License",
{%- endif %}
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
license = "Apache-2.0"
{%- if cookiecutter.license != "None" %}
license = "{{cookiecutter.license}}"
license-files = [ "LICENSE" ]
{%- endif %}
requires-python = ">=3.9"
dependencies = [
{%- if cookiecutter.faker_extra %}
Expand Down

0 comments on commit 9ceb127

Please sign in to comment.