-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 986 Bytes
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 986 Bytes
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 = "dspace-requests-wrapper"
version = "1.0.3"
description = "A wrapper around the requests session object to make interacting with the DSpace API easier"
readme = "README.md"
authors = [
{ name = "Kevin Bowrin", email = "kevinbowrin@cunet.carleton.ca" }
]
requires-python = ">=3.9"
dependencies = [
"requests>=2.32.4",
]
license = "MIT"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://github.com/cu-library/dspace-requests-wrapper"
Issues = "https://github.com/cu-library/dspace-requests-wrapper/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"codespell>=2.4.1",
"mypy>=1.17.0",
"pytest>=8.4.1",
"pytest-mock>=3.14.1",
"requests-mock>=1.12.1",
"requests-toolbelt>=1.0.0",
"ruff>=0.12.3",
"types-requests>=2.32.4.20250611",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
python_files = [
"tests.py",
"test_*.py",
"*_test.py",
]