-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (33 loc) · 961 Bytes
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "datacitekit"
authors = [{name = "DataCite Engineering", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
]
dynamic = ["version", "description"]
dependencies = ["requests", "glom"]
[project.urls]
Home = "https://datacite.org"
[project.optional-dependencies]
test = [ "pytest"]
[tool.flit.module]
path = "src/datacitekit"
[tool.pytest.ini_options]
# Specify directories to search for tests
testpaths = "tests"
# Add any command-line options here
addopts = "--verbose"
# Specify patterns for test file names
python_files = "test_*.py"
# Specify patterns for test function and method names
python_functions = "test_*"
# Specify patterns for test class names
python_classes = "Test*"
# Configure logging
log_cli = "true"
log_cli_level = "INFO"