-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (78 loc) · 2.12 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (78 loc) · 2.12 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pheatmap-python"
version = "1.0.13.post1"
description = "Python port of the R pheatmap package (tracks R pheatmap 1.0.13)"
readme = "README.md"
requires-python = ">=3.10"
license = "GPL-2.0-or-later"
license-files = ["LICENSE"]
authors = [
{ name = "Jeffery Liu", email = "jeffliu.lucky@gmail.com" },
]
keywords = [
"pheatmap",
"heatmap",
"clustering",
"visualization",
"R-port",
"dendrograms",
"bioinformatics",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Typing :: Typed",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.11",
"pandas>=2.0",
"matplotlib>=3.8",
"rgrid-python>=4.5.3",
"gtable-python>=0.3.6",
"scales-python>=1.4.0",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "ruff", "build", "twine"]
docs = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material",
"mkdocs-jupyter",
]
[project.urls]
Homepage = "https://github.com/Bio-Babel/pheatmap-python"
Repository = "https://github.com/Bio-Babel/pheatmap-python"
Issues = "https://github.com/Bio-Babel/pheatmap-python/issues"
Documentation = "https://github.com/Bio-Babel/pheatmap-python#readme"
[tool.hatch.build.targets.wheel]
packages = ["pheatmap"]
[tool.hatch.build.targets.sdist]
exclude = [
"tutorials/",
"docs/",
"tests/",
"site/",
"validation/",
"mkdocs.yml",
".github/",
"*.egg-info/",
"build/",
"dist/",
]
[tool.pytest.ini_options]
testpaths = ["tests"]