-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
71 lines (61 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyoai"
version = "2.5.2"
description = "The oaipmh module is a Python implementation of an \"Open Archives Initiative Protocol for Metadata Harvesting\" (version 2) client and server."
readme = "README.rst"
requires-python = ">=3.10"
license = "BSD-3-Clause"
authors = [
{name = "Infrae", email = "info@infrae.com"},
]
keywords = ["OAI-PMH", "xml", "archive"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
]
dependencies = [
"lxml",
]
[project.urls]
Homepage = "http://www.infrae.com/download/oaipmh"
Repository = "https://github.com/infrae/pyoai"
[project.optional-dependencies]
dev = [
"pytest",
"pre-commit",
"ruff",
"bumpver",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W"]
[tool.pytest.ini_options]
testpaths = ["src/oaipmh/tests"]
python_classes = ["*TestCase"]
[tool.bumpver]
current_version = "2.5.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"',
]