|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=61.0"] |
| 2 | +requires = ["setuptools>=64"] |
3 | 3 | build-backend = "setuptools.build_meta" |
4 | 4 |
|
5 | 5 | [project] |
6 | | -name = "dataverse-python-client" |
| 6 | +name = "dataverse-client-python" |
7 | 7 | version = "0.1.0" |
8 | | -description = "Dataverse Python client" |
9 | | -authors = [{ name = "POC" }] |
10 | | -readme = "README.md" |
| 8 | +description = "Python SDK for Microsoft Dataverse" |
| 9 | +readme = {file = "README.md", content-type = "text/markdown"} |
| 10 | +authors = [{name = "Microsoft Corporation"}] |
| 11 | +license = "MIT" |
| 12 | +license-files = ["LICENSE"] |
11 | 13 | requires-python = ">=3.10" |
| 14 | +classifiers = [ |
| 15 | + "Programming Language :: Python :: 3.10", |
| 16 | + "Programming Language :: Python :: 3.11", |
| 17 | + "Programming Language :: Python :: 3.12", |
| 18 | + "Programming Language :: Python :: 3.13", |
| 19 | + "Operating System :: OS Independent", |
| 20 | +] |
12 | 21 | dependencies = [ |
13 | | - "azure-identity>=1.17.0", |
14 | | - "azure-core>=1.30.2", |
15 | | - "requests>=2.32.0", |
16 | | - "pytest>=8.3.1", |
17 | | - "pandas>=2.2.0", |
| 22 | + "azure-identity>=1.17.0", |
| 23 | + "azure-core>=1.30.2", |
| 24 | + "requests>=2.32.0", |
| 25 | + "pandas>=2.2.0", |
18 | 26 | ] |
19 | 27 |
|
| 28 | +[project.urls] |
| 29 | +"Homepage" = "https://github.com/microsoft/PowerPlatform-DataverseClient-Python" |
| 30 | + |
20 | 31 | [tool.setuptools] |
21 | | -# Use the src/ layout |
22 | 32 | package-dir = {"" = "src"} |
23 | | - |
24 | | -[tool.setuptools.packages.find] |
25 | | -# Discover packages under src/, include our package, and exclude non-package folders |
26 | | -where = ["src"] |
27 | | -include = ["dataverse_sdk*"] |
28 | | -exclude = ["tests*", "examples*"] |
29 | | - |
30 | | -[tool.pytest.ini_options] |
31 | | -addopts = "-q" |
32 | | -pythonpath = ["src"] |
0 commit comments