-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 869 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (42 loc) · 869 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
[build-system]
requires = [
"setuptools>=65",
"setuptools-scm>=8.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "daisy-extensions"
version = "0.1.0"
description = "Python extensions for Daisy"
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.11"
authors = [
{ name = "Silas Nyboe Ørting" },
{ name = " Tobias Klöffel" },
]
dependencies = []
[tool.setuptools_scm]
version_file = "daisy_extensions/_version.py"
[tool.pylint.messages_control]
ignore = [
'_version.py',
'.venv'
]
[tool.pytest.ini_options]
addopts = [
"--basetemp=tests/tmp"
]
[tool.coverage.run]
command_line = "-m pytest"
source = ["."]
[tool.coverage.report]
show_missing = "true"
[dependency-groups]
dev = [
"daisypy-io>=0.2.2",
"pandas>=3.0.1",
"pylint>=3.3.9",
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
]