You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
653 B
36 lines
653 B
[project]
|
|
name = "syncplay-boot"
|
|
description = "Bootstrap of Syncplay server."
|
|
license = "MIT"
|
|
authors = [
|
|
{ name = "Dnomd343", email = "dnomd343@gmail.com" }
|
|
]
|
|
|
|
dynamic = ["version"]
|
|
requires-python = "~=3.12"
|
|
dependencies = [
|
|
"pyyaml>=6.0.2",
|
|
"syncplay",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pyright>=1.1.400",
|
|
"pytest>=8.3.5",
|
|
"ruff>=0.11.10",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
syncplay = { path = "./src/syncplay/" }
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
target-version = "py312"
|
|
lint.select = ["E", "F", "B", "N", "W"]
|
|
lint.ignore = ["E701"]
|
|
|
|
[tool.pyright]
|
|
pythonVersion = "3.12"
|
|
typeCheckingMode = "basic"
|
|
pythonPlatform = "All"
|
|
include = ["src"]
|
|
|