-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (61 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
73 lines (61 loc) · 1.36 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
[project]
name = "openbdf"
dynamic = ["version"]
description = "Command line interface for working with OpenBDF 2.0 files"
authors = [
{ name = "Cyprien Lengagne", email = "cyprien.lengagne@epfl.ch" },
]
license = {text = "GPL-3.0-or-later"}
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
"rich~=13.9.3",
"sqlmodel>=0.0.37",
"typer~=0.15.1",
]
[project.optional-dependencies]
dev = [
"myst-parser>=4.0.1",
"pre-commit~=4.0.1",
"pytest~=8.1.1",
"pytest-cov~=5.0.0",
"sphinx>=8.1.3",
"sphinx-copybutton>=0.5.2",
"sphinx-press-theme>=0.9.1",
]
test = [
"pytest~=8.1.1",
"pytest-cov~=5.0.0",
]
doc = [
"myst-parser>=4.0.1",
"sphinx>=8.1.3",
"sphinx-copybutton>=0.5.2",
"sphinx-press-theme>=0.9.1",
]
[project.urls]
repository = "https://github.com/EPFL-ENAC/lmc-openbdf"
[build-system]
requires = ["setuptools>=76.0.0", "setuptools_scm[toml]>=8.2.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--cov=openbdf --cov-report term-missing --cov-report xml --cov-report lcov:lcov.info"
testpaths = [
"tests",
]
[tool.setuptools]
packages = ["openbdf"]
[tool.setuptools_scm]
[project.scripts]
openbdf = "openbdf.main:app"
[tool.mypy]
plugins = ["pydantic.mypy"]
[tool.ruff]
line-length = 120
preview = true
[tool.codespell]
skip = 'uv.lock,docs/_static/custom.css'
[tool.uv.workspace]
members = [
"test-model",
]