diff options
author | Leonard Richardson <leonardr@segfault.org> | 2023-08-27 11:47:13 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2023-08-27 11:47:13 -0400 |
commit | 30c58a1d302e1aedaf86c168078bf5bc341e8c9a (patch) | |
tree | 33c340e1201ebe979c7369547702a61d65cefe3c /pyproject.toml | |
parent | 418ab58f94ea4a0957bcad8e7520bb3fb62d1394 (diff) |
Corrected the syntax of the license definition in pyproject.toml. Patch
by Louis Maddox. [bug=2032848]
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 31b0b7f..b4c2da9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "beautifulsoup4" dynamic = ["version"] description = "Screen-scraping library" readme = "README.md" -license = "MIT" +license = { text = "MIT License" } requires-python = ">=3.6.0" authors = [ { name = "Leonard Richardson", email = "leonardr@segfault.org" }, |