-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 864 Bytes
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 864 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
45
46
47
48
49
50
51
52
[build-system]
requires = [
"setuptools>=61.2",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[project]
name = "zbmath_rest2oai"
description = "convert from custom api to oai-pmh api"
dynamic = ["version"]
dependencies = [
"dict2xml",
"requests",
"aiohttp",
"lxml",
"defusedxml",
"pyoai",
"swh.deposit",
"swh.auth"
]
[project.optional-dependencies]
test = [
"black",
"coverage",
"flake8",
"isort",
"pytest",
"radon",
"flake8_polyfill",
"coverage",
"requests_mock",
"python-dateutil",
"pytest-coverage",
"xmldiff",
"lxml"
]
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"test"
]