-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
23 lines (21 loc) · 773 Bytes
/
pyproject.toml
File metadata and controls
23 lines (21 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[build-system]
requires = ["setuptools>=42",
"wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plot-phylo"
dynamic = ["version"]
description = "This module allows the user to plot a phylogenetic tree on an existing matplotlib axis."
readme = "README.md"
license = { text = "MIT License" }
keywords = ["phylogenetics",
"matplotlib"]
authors = [{name = "Katy Brown", email = "kab84@cam.ac.uk"}]
maintainers = [{name = "Katy Brown", email = "kab84@cam.ac.uk"}]
dependencies = ["ete3 >= 3.1.0",
"matplotlib >= 2.1.1"]
requires-python = ">=3.6"
[project.urls]
Documentation = "https://plot-phylo.readthedocs.io"
Repository = "https://github.com/KatyBrown/plot_phylo"
"Bug Tracker" = "https://github.com/KatyBrown/plot_phylo/issues"