-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.58 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tree-annotated-plot"
version = "0.3.0"
description = "Annotate the axis of an Altair / Vega-Lite plot with a phylogenetic tree."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Jesse Bloom", email = "jbloom@fredhutch.org" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"altair>=6.0,<7",
"click>=8.0",
"pandas>=2.0",
"vl-convert-python>=1.9",
]
[project.urls]
Documentation = "https://jbloomlab.github.io/tree-annotated-plot/"
Homepage = "https://github.com/jbloomlab/tree-annotated-plot"
Repository = "https://github.com/jbloomlab/tree-annotated-plot"
Issues = "https://github.com/jbloomlab/tree-annotated-plot/issues"
[project.optional-dependencies]
dev = [
"pytest>=8",
"ruff>=0.6",
"black>=24",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.27",
"mkdocs-click>=0.8",
]
[project.scripts]
tree-annotated-plot = "tree_annotated_plot.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/tree_annotated_plot"]
dev-mode-dirs = ["src"]
[tool.black]
target-version = ["py311"]
[tool.ruff]
target-version = "py311"