Path: blob/master/pyproject.toml
1088 views
[tool.poetry]1name = "platerec"2version = "0.1.0"3description = ""4authors = ["Marc Belmont"]56[tool.poetry.dependencies]7python = "^3.8"8Pillow = "10.2.0"9requests = "^2.31.0"10psutil = "^5.7.0"11paramiko = "^3.4.0"12flask = "^2.3.2"1314[tool.poetry.dev-dependencies]15pre-commit = "^2.2.0"16pytest = "^7.3.1"17hypothesis = "*"18flake8 = "*"19yapf = "==0.27"20rope = "^0.14.0"21pdbpp = "*"2223[build-system]24requires = ["poetry>=0.12"]25build-backend = "poetry.masonry.api"2627[tool.ruff]28target-version = "py38"2930[tool.ruff.lint]31mccabe.max-complexity = 1632isort.split-on-trailing-comma = false33ignore = ["E501", "E251", "E266", "E401", "DJ001", "W291"]34select = [35"B",36"E",37"F",38"I",39"N",40"W",41"C9",42"DJ",43"UP",44"SIM101",45"SIM102",46"SIM103",47"SIM108",48"SIM109",49"SIM113",50"SIM114",51"SIM201",52"SIM202",53"SIM208",54"SIM210",55"SIM211",56"SIM212",57"SIM220",58"SIM221",59"SIM910",60"SIM911",61]6263[tool.ruff.format]64skip-magic-trailing-comma = true6566[tool.mypy]67ignore_missing_imports = true68install_types = true69non_interactive = true70disable_error_code = ["annotation-unchecked"]717273