generated from sourmash-bio/sourmash_plugin_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
27 lines (24 loc) · 1.22 KB
/
pyproject.toml
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
[project]
name = "sourmash_plugin_betterplot"
description = "sourmash plugin for improved plotting/viz and cluster examination."
readme = "README.md"
requires-python = ">=3.10"
version = "0.4.5"
dependencies = ["sourmash>=4.8.8,<5", "sourmash_utils>=0.2",
"matplotlib", "numpy", "scipy", "scikit-learn",
"seaborn", "upsetplot", "matplotlib_venn", "pandas"]
[metadata]
license = { text = "BSD 3-Clause License" }
[project.entry-points."sourmash.cli_script"]
plot2_command = "sourmash_plugin_betterplot:Command_Plot2"
plot3_command = "sourmash_plugin_betterplot:Command_Plot3"
mds_command = "sourmash_plugin_betterplot:Command_MDS"
mds2_command = "sourmash_plugin_betterplot:Command_MDS2"
pairwise_to_matrix = "sourmash_plugin_betterplot:Command_PairwiseToMatrix"
clustermap1_command = "sourmash_plugin_betterplot:Command_Clustermap1"
upset_command = "sourmash_plugin_betterplot:Command_Upset"
cluster_to_categories_command = "sourmash_plugin_betterplot:Command_ClusterToCategories"
tsne_command = "sourmash_plugin_betterplot:Command_TSNE"
tsne2_command = "sourmash_plugin_betterplot:Command_TSNE2"
venn = "sourmash_plugin_betterplot:Command_Venn"
presence_filter = "sourmash_plugin_betterplot:Command_PresenceFilter"