-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (48 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "multiqc_xenium_extra"
version = "1.0.2"
authors = [
{name = "Phil Ewels", email = "phil.ewels@seqera.io"},
]
description = "MultiQC plugin for extra Xenium spatial transcriptomics analysis"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["bioinformatics", "biology", "spatial transcriptomics", "xenium", "quality control"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
]
requires-python = ">=3.9"
dependencies = [
"multiqc>=1.32",
"polars>=0.18.0",
"scipy>=1.8.0",
"scanpy>=1.9.0",
]
[tool.setuptools]
packages = ["multiqc_xenium_extra"]
[project.urls]
Repository = "https://github.com/MultiQC/xenium-extra"
Documentation = "https://docs.seqera.io/multiqc/modules/xenium"
Issues = "https://github.com/MultiQC/xenium-extra/issues"
Changelog = "https://github.com/MultiQC/xenium-extra/blob/main/CHANGELOG.md"
[project.entry-points."multiqc.hooks.v1"]
execution_start = "multiqc_xenium_extra.xenium_extra:xenium_extra_execution_start"
xenium_extra = "multiqc_xenium_extra.xenium_extra:extend_xenium_module"
[tool.ruff]
line-length = 120
target-version = "py39"