-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (37 loc) · 1.11 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "dnctree"
authors = [
{name = "Lars Arvestad", email = "arve@math.su.se"},
{name = "Amy Lee Jalenius", email = "amy.jalsenius@gmail.com"},
]
maintainers = [
{name = "Lars Arvestad", email = "arve@math.su.se"},
]
description = "Distance-based phylogeny inference using a randomised divide-and-conquer method"
readme = "README.md"
license = {text = "GNU General Public License v3 (GPLv3)"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dynamic = ["version"]
dependencies = [
"alv>=1.5",
"modelmatcher>=1.1.3",
"biopython>=1.81",
"ete3>=3.1.1",
"tree_matching_distance"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.scripts]
dnctree = "dnctree.main:main"
[project.urls]
homepage = "https://github.com/arvestad/dnctree"
[tool.setuptools]
packages = ["dnctree"]
[tool.setuptools.dynamic]
version = {attr = "dnctree.version.__version__"}