-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.28 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dspace-rest-client"
dynamic = ["version"]
description = "A DSpace REST API client library"
readme = "README.md"
license = {text = "BSD-3-Clause"}
authors = [
{name = "Kim Shepherd", email = "kim@the-library-code.de"}
]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"requests >= 2.32.3",
"pysolr >= 3.10.0",
"PySocks >= 1.7.1",
"smart_open[all]~=7.0.1"
]
requires-python = ">=3.8.0"
[project.urls]
Documentation = "https://github.com/the-library-code/dspace-rest-python/blob/main/README.md"
GitHub = "https://github.com/the-library-code/dspace-rest-python"
Changelog = "https://github.com/the-library-code/dspace-rest-python/blob/main/CHANGELOG.md"
[tool.setuptools_scm]
version_file = "dspace_rest_client/_version.py"
[tool.setuptools.packages.find]
where = ["."]
include = ["dspace_rest_client*"]