/
GlebBavykin
/
python_sketches
Обзор
Документация
Войти
/
GlebBavykin
/
python_sketches
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
pyproject.toml
40 строк
651 B
Gleb Bavykin
add pytest-xdist
10 июл 2026, 21:12
10 июл 2026, 21:12
d0965c7
Код
Авторство
О чём код?
[project] name = "python-sketches" version = "1.0.0" description = "algorithms, data structures, and design patterns implemented in python3" readme = "README.md" requires-python = ">=3.14.5" dependencies = [ "pytest", "PyYAML", "faker", "requests", "pytest-xdist" ] [dependency-groups] dev = [ "isort", "mypy>=2.1.0", "pyright>=1.1.411", "pytest>=9.0.2", "pytest-xdist>=3.8.0", "ruff", ] [tool.ruff] line-length = 120 [tool.ruff.format] skip-magic-trailing-comma = false [tool.isort] profile = "black" line_length = 88 [tool.mypy] python_version = '3.14' strict = false ignore_missing_imports = true