pyproject.toml (18 lines of code) (raw):

[project] name = "modular-service" description = "Service that allows to manage common modular entities" readme = "README.md" requires-python = ">=3.10" license = {file = "LICENSE"} dependencies = [ ] [tool.pyright] include = ["src/"] exclude = [ "**/__pycache__", ] pythonVersion = "3.10" reportIncompatibleMethodOverride = "warning" executionEnvironments = [ {root = "tests/", pythonVersion = "3.10", extraPaths = ["src/"]} ]