-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
67 lines (57 loc) · 1.52 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
[tool.poetry]
name = "pysatl_cpd"
version = "0.1.0"
description = "Batch module for changepoint detection"
authors = [
"Temerlan Akhmetov <[email protected]>",
"Alexey Tatyanenko <[email protected]>",
"Artemii Patov <[email protected]>",
"Vladimir Kutuev <[email protected]>",
"Aleksei Ivanov <[email protected]>",
"Artem Romanyuk <[email protected]>",
"Aleksandra Listkova <[email protected]>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/PySATL/pysatl-cpd"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^2.0.0"
scipy = "^1.14.0"
matplotlib = "^3.9.1"
scikit-learn = "^1.5.2"
PyQt5 = "^5.15.11"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
mypy = "^1.10.1"
ruff = "^0.11.2"
pre-commit = "^4.1.0"
pyyaml = "^6.0.1"
matplotlib = "^3.9.1"
ipykernel = "^6.29.5"
hypothesis = "^6.122.1"
scipy-stubs = "^1.15.2"
types-pyyaml = "^6.0.12"
microsoft-python-type-stubs = {git = "https://github.com/microsoft/python-type-stubs.git"}
pytest-cov = "^6.0.0"
[tool.ruff]
line-length = 120
indent-width = 4
respect-gitignore = true
exclude = ["*.ipynb"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ruff.lint]
select = ["A", "E", "F", "I", "PL", "RUF", "SIM", "UP", "W"]
ignore = ["PLR0913"]
[tool.mypy]
files = "pysatl_cpd"
mypy_path = "pysatl_cpd"
strict = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"