Files
Ilya.Kazakevichandintellij-monorepo-bot c183e6e634 [python] PY-79486: (WIP) split pyproject.toml tools into backend/common.
Each tool (uv, poetry) now has `common` and `backend` part. `common` has icons because we need them both on the front and on the back.

We might need to create `front` module also if we wouldn't be able to use icons in compose.

GitOrigin-RevId: b5662fbdf3d23f1ddaa5926469d1cfd2051a0fba
2025-10-16 17:21:59 +00:00

27 lines
864 B
Python

### auto-generated section `build intellij.python.community.impl.uv.backend` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "resourcegroup")
resourcegroup(
name = "backend_resources",
srcs = glob(["resources/**/*"]),
strip_prefix = "resources"
)
jvm_library(
name = "backend",
module_name = "intellij.python.community.impl.uv.backend",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java", "src/**/*.form"], allow_empty = True),
resources = [":backend_resources"],
deps = [
"@lib//:kotlin-stdlib",
"//python/python-uv/common",
"@lib//:jetbrains-annotations",
"//platform/util",
"//python/python-pyproject:pyproject",
"//platform/core-api:core",
"//python/openapi:community",
"//python/common",
]
)
### auto-generated section `build intellij.python.community.impl.uv.backend` end