-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "dataverse-api"
version = "1.4.3"
description = "Abstraction layer for interacting with Microsoft Dataverse Web API using Python."
authors = [{ name = "Marcus Risanger", email = "69350948+MarcusRisanger@users.noreply.github.com" }]
requires-python = ">=3.11,<4"
readme = "README.md"
dependencies = [
"narwhals>=2.0.0,<3",
"pydantic>=2.5.3,<3",
"requests>=2.32.4,<3",
]
[dependency-groups]
dev = [
"ipykernel>=6.26.0,<7",
"msal>=1.26.0,<2",
"msal-requests-auth>=0.9.1",
"python-dotenv>=1.0.0,<2",
"requests-mock>=1.11.0,<2",
"responses>=0.24.1,<0.25",
"types-requests>=2.31.0.10,<3",
"pytest-xdist>=3.5.0,<4",
"pandas-stubs>=2.1.4.231218,<3",
"tabulate>=0.9.0,<0.10",
"mypy>=1.15.0",
"pytest>=7.4.4",
"pytest-mock>=3.14.0",
"pytest-cov>=6.2.1",
"polars>=1.31.0",
"pandas>=2.3.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Repository = "https://github.com/MarcusRisanger/Dataverse-API"
[tool.ruff]
line-length = 120
lint.ignore-init-module-imports = true