Skip to content

Latest commit

 

History

History
67 lines (65 loc) · 1.28 KB

File metadata and controls

67 lines (65 loc) · 1.28 KB

Project

[project]
name = "amr_predict"
version = "0.1.0"
description = "TODO"
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
  "numpy",
  "torch",
  "torchmetrics",
  "wandb",
  "dnachisel",
  "xgboost",
  "ipython",
  "pandera",
  "PAMI",
  "beartype",
  "attrs",
  "polars",
  "pytest",
  "mimesis",
  "lightning",
  "pyhere",
  "rich-cli",
  "esm",
  "loguru",
  "duckdb",
  "jaxtyping",
  "transformers",
  "plotnine",
  "fastcluster",
  "yte",
  "cattrs",
  "click",
  "datasets",
  "memray",
  "umap-learn[plot]",
  "scikit-bio",
  "anndata",
  "fastcluster",
  "scanpy",
  "pypalettes",
  "pandas",
  "leidenalg",
  "igraph",
  "scikit-learn",
]

Pyright configuration

(if-let* ((stdout (shell-command-to-string "conda env list"))
          (lines (split-string stdout "\n"))
          (target (-filter (lambda (x) (string-prefix-p env (string-trim x))) lines)))
    (car (last (string-split (car target) " ")))
  "Not found")
[tool.pyright]
extraPaths = ["<<conda("amr_predict")>>/lib/python3.12/site-packages", "src"]
exclude = ["**/__pycache__"]
typeCheckingMode = "basic"