-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
86 lines (74 loc) · 1.54 KB
/
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
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
[project]
name = "uav-mbse"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4==4.12.3",
"black[jupyter]>=24.10.0",
"matplotlib>3.9.2",
"numpy>1.26.4",
"pandas>2.2.2",
"plotly>5.22.0",
"scipy>1.13.0",
"shapely>2.0.4",
"tqdm>=4.67.1",
"triangle>=20250106",
]
[project.scripts]
uav-mbse = "uav_mbse:main"
[project.optional-dependencies]
code-quality = [
"ruff>=0.8.4",
"wily>=1.25.0",
]
profiler = [
"psutil",
"snakeviz",
"gprof2dot"
]
graph = [
"pydot>=3.0.2",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.uv]
dev-dependencies = [
"black>=24.8.0",
"graphviz>=0.20.3",
"ipykernel>=6.29.5",
"isort>=5.13.2",
"pydot>=3.0.3",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.8.4",
"uv>=0.5.16",
"wily>=1.25.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
extend-exclude = ["legacy/", "tests/", "scripts/"]
[tool.wily]
path = "src/"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
pythonpath = ["."]
minversion = "6.0" # Minimum pytest version
addopts = "-ra" # Additional options: show extra test summary info and run quietly
testpaths = ["tests"]
python_files = [
"test_*.py", # Patterns to discover test files
"*_test.py"
]
python_classes = [
"Test*", # Patterns to discover test classes
"*Tests"
]
python_functions = [
"test_*", # Patterns to discover test functions
"*_test"
]