-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (64 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
78 lines (64 loc) · 1.66 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
72
73
74
75
76
77
78
[project]
name = "dbdreader"
version = "0.6.0"
description = "A python module to access binary data files generated by Teledyne WebbResearch gliders"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Lucas Merckelbach", email = "lucas.merckelbach@hereon.de"}
]
license = {text = "GPL-3.0"}
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
]
dependencies = [
"lz4>=4.4.5",
"numpy>=2.2.6",
"scipy>=1.15.3",
]
[project.scripts]
dbdrename = "dbdreader.scripts:dbdrename"
[project.urls]
Homepage = "https://dbdreader.readthedocs.io/en/latest/"
[dependency-groups]
dev = [
"black>=26.3.1",
"ipython>=8.39.0",
"pytest>=9.0.2",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
ext-modules = [
{name = "_dbdreader", sources = ["extension/py_dbdreader.c", "extension/dbdreader.c", "extension/decompress.c"], include-dirs = ["extension/include"]}
]
packages = ["dbdreader"]
include-package-data = false
[tool.setuptools.package-data]
dbdreader = ["data/*"]
[tool.pytest.ini_options]
filterwarnings = "always::UserWarning"
#addopts = "--markdown-docs-syntax=superfences"
log_cli = false
log_cli_level = "WARNING"
[tool.black]
line-length = 88
target-version = ['py311', 'py312', 'py313', 'py314']
include = '\.pyi?$'
exclude = '''
(
/(
| \.ipynb_checkpoints
| \.pytest_cache
| __pycache__
)/
)
'''
[tool.mypy]
python_version = "3.13"
strict = true # Enable all checks
disallow_untyped_calls = true