-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (66 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
78 lines (66 loc) · 1.33 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
[tool.poetry]
name = "vim-python-docker-template"
version = "0.2.0"
description = "Template"
authors = [
"John Dev <j_dev@domain.com>",
]
readme = "README.md"
repository = "https://github.com/jamm1985/vim-python-docker-template"
packages = [
{ include = "sample", from="src" },
]
[tool.poetry.scripts]
template_bin = 'sample.main:main'
[tool.poetry.dependencies]
python = "~3.14"
numpy = "~2.4.0"
pandas = "~2.3.3"
scikit-learn = "~1.8.0"
scipy = "~1.16.3"
[tool.poetry.group.dev.dependencies]
black = "^25.12.0"
coverage = "^7.13.0"
ipython = "^9.8.0"
isort = "^7.0.0"
jupyterlab = "^4.5.1"
matplotlib = "^3.10.8"
pre-commit = "^4.5.1"
pyright = "^1.1.407"
pytest = "^9.0.2"
ruff = "0.*"
seaborn = "^0.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
include = [
"**/pyproject.toml",
"src/**/*.py",
"src/**/*.pyi",
"tests/**/*.py",
]
line-length = 79
indent-width = 4
target-version = "py313"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"S301",
"RUF002",
"INP001",
"COM812",
"ISC001",
]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = [
"S101",
"PLR2004",
]
[tool.ruff.lint.isort]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.pylint]
max-args = 10
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"