-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (90 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
100 lines (90 loc) · 1.86 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools_scm>=8"]
[project]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering"
]
dependencies = [
"numba>=0.64.0",
"numpy>=2.4.2",
"pyyaml>=6.0.3",
"scipy>=1.17.1"
]
description = "Python version of the OpenPTV library"
dynamic = ["version"]
license = {file = "LICENSE"}
name = "openptv-python"
readme = "README.md"
requires-python = ">=3.12,<3.14"
[project.optional-dependencies]
dev = [
"mypy>=1.19.1",
"myst-parser>=5.0.0",
"optv>=0.3.2",
"pre-commit>=4.5.1",
"pydata-sphinx-theme>=0.16.1",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"sphinx>=9.1.0",
"sphinx-autoapi>=3.7.0",
"types-pyyaml>=6.0.12.20250915"
]
docs = [
"myst-parser>=5.0.0",
"pydata-sphinx-theme>=0.16.1",
"sphinx>=9.1.0",
"sphinx-autoapi>=3.7.0"
]
native = [
"optv>=0.3.2"
]
test = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0"
]
[tool.coverage.run]
branch = true
[tool.mypy]
strict = false
[tool.ruff]
# Same as Black.
indent-width = 4
line-length = 88
[tool.ruff.lint]
ignore = [
# pydocstyle: Missing Docstrings
"D1"
]
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# isort
"I",
# pydocstyle
"D"
]
[tool.ruff.lint.pycodestyle]
max-line-length = 110
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.setuptools]
packages = ["openptv_python"]
[tool.setuptools_scm]
fallback_version = "999"
write_to = "openptv_python/version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''