-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpyproject.toml
33 lines (29 loc) · 1.05 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
28
29
30
31
32
[build-system]
requires = ["setuptools>=61.0","wheel","setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme="post-release" #"guess-next-dev"
local_scheme="no-local-version"
write_to = 'PyComplexHeatmap/_version.py'
[project]
name = "PyComplexHeatmap"
dynamic = ["version"]
dependencies = ["matplotlib","numpy","pandas>=1.3.5", "scipy","palettable"] #matplotlib<=3.7.5
authors = [
{ name="Wubin Ding", email="[email protected]" },
]
description = "A python package to plot complex heatmap"
keywords = ["ComplexHeatmap", "heatmap"]
readme = "README.md"
requires-python = ">=3.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {file = "LICENSE"}
[project.urls]
"Homepage" = "https://github.com/DingWB/PyComplexHeatmap"
repository = "https://github.com/DingWB/PyComplexHeatmap"
"Bug Tracker" = "https://github.com/DingWB/PyComplexHeatmap/issues"
documentation = "https://dingwb.github.io/PyComplexHeatmap"