forked from CPCLAB-UNIPI/SIPPY
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (63 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
68 lines (63 loc) · 1.18 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
[project]
name = "sippy"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "James Joseph", email = "jamestjsp@outlook.com" }
]
requires-python = ">=3.13"
dependencies = [
"casadi>=3.7.2",
"control>=0.10.2",
"harold>=1.0.3",
"joblib>=1.4.0",
"jupyterlab>=4.4.9",
"numba>=0.60.0",
"pandas>=2.3.3",
"pytest>=8.4.2",
"slycot>=0.6.0",
]
[dependency-groups]
dev = [
"line-profiler>=5.0.0",
"py-spy>=0.4.1",
"ruff>=0.8.0",
"scalene>=1.5.55",
]
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = [
"E741", # ambiguous variable name `l` (common in signal processing)
"E501", # line too long (handled by formatter)
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"