Skip to content

Commit 26ea6e0

Browse files
authored
fix(license): correction to MIT + MIT-0 (no proprietary anymore) (#1883)
1 parent 971f095 commit 26ea6e0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: pyproject.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["aws_lambda_powertools/py.typed", "THIRD-PARTY-LICENSES"]
77
classifiers=[
88
"Development Status :: 5 - Production/Stable",
99
"Intended Audience :: Developers",
10-
"License :: OSI Approved :: MIT License",
10+
"License :: OSI Approved :: MIT No Attribution License (MIT-0)",
1111
"Natural Language :: English",
1212
"Programming Language :: Python :: 3.7",
1313
"Programming Language :: Python :: 3.8",
@@ -16,7 +16,9 @@ classifiers=[
1616
repository="https://github.com/awslabs/aws-lambda-powertools-python"
1717
readme = "README.md"
1818
keywords = ["aws_lambda_powertools", "aws", "tracing", "logging", "lambda", "powertools", "feature_flags", "idempotency", "middleware"]
19-
license = "MIT-0"
19+
# MIT-0 is not recognized as an existing license from poetry.
20+
# By using `MIT` as a license value, a `License :: OSI Approved :: MIT License` classifier is added to the classifiers list.
21+
license = "MIT"
2022

2123
[tool.poetry.dependencies]
2224
python = "^3.7.4"

0 commit comments

Comments
 (0)