Skip to content

Commit bf1cbe5

Browse files
committed
Fix pyproject.toml license configuration for modern setuptools
- Change license from {text: 'MIT'} to 'MIT' (newer setuptools format) - Remove license classifier to avoid conflicts with license field - Verified package builds successfully with py.typed included
1 parent 57b5fe0 commit bf1cbe5

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ version = "0.1.0b1"
88
description = "Python SDK for Microsoft Dataverse"
99
readme = {file = "README.md", content-type = "text/markdown"}
1010
authors = [{name = "Microsoft Corporation"}]
11-
license = {text = "MIT"}
11+
license = "MIT"
1212
license-files = ["LICENSE"]
1313
requires-python = ">=3.10"
1414
keywords = ["dataverse", "powerapps", "powerplatform", "crm", "dynamics", "odata"]
1515
classifiers = [
1616
"Development Status :: 4 - Beta",
1717
"Intended Audience :: Developers",
18-
"License :: OSI Approved :: MIT License",
1918
"Programming Language :: Python :: 3",
2019
"Programming Language :: Python :: 3.10",
2120
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)