-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (85 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
93 lines (85 loc) · 2.09 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "exp_heatmap"
version = "1.3.0"
authors = [
{name = "Edvard Ehler", email = "edvard.ehler@img.cas.cz"},
{name = "Ondřej Moravčík"}
]
maintainers = [
{name = "Adam Nógell", email = "adam.nogell@img.cas.cz"}
]
description = "Ordered-pair workflow for regional cross-population genomic visualization (VCF -> empirical rank-score heatmaps)"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = [
"bioinformatics",
"population-genetics",
"selection-scan",
"xpehh",
"xpnsl",
"fst",
"tajima-d",
"heatmap",
"visualization",
"1000-genomes",
"ggvp"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization"
]
dependencies = [
"scikit-allel>=1.3.7",
"zarr>=2.10,<3.0.0",
"numpy>=1.22",
"pandas>=1.4",
"matplotlib>=3.5",
"seaborn>=0.12",
"click>=8.0",
"plotly>=5.10",
"tqdm>=4.60"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0"
]
benchmarks = [
"psutil>=5.9",
"pysam>=0.22"
]
all = [
"pytest>=7.0",
"pytest-cov>=4.0",
"psutil>=5.9",
"pysam>=0.22"
]
[project.urls]
Homepage = "https://github.com/bioinfocz/exp_heatmap"
Repository = "https://github.com/bioinfocz/exp_heatmap"
"Bug Tracker" = "https://github.com/bioinfocz/exp_heatmap/issues"
Documentation = "https://github.com/bioinfocz/exp_heatmap#readme"
[project.scripts]
exp_heatmap = "exp_heatmap.cli:cli"
exp-heatmap = "exp_heatmap.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]