-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.46 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
[build-system]
requires = ["flit_core >=3.12.0,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "mdeq"
authors = [
{ name = "Katherine Caley", email = "katherine.caley@anu.edu.au" },
{ name = "Gavin Huttley", email = "Gavin.Huttley@anu.edu.au" },
]
keywords = [
"biology",
"genomics",
"statistics",
"phylogeny",
"evolution",
"bioinformatics",
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11,<=3.14"
dependencies = [
"cogent3>=2025.7.10a5",
"scinexus",
"click",
"numpy",
"scipy",
"scitrack",
"rich",
"trogon",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dynamic = ["version", "description"]
[tool.flit.sdist]
include = ["src/*", "pyproject.toml"]
[project.scripts]
mdeq = "mdeq:main"
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "pytest-xdist", "nox"]
dev = ["cogapp", "docformatter", "mdeq[test]", "ruff==0.15.12"]
[tool.pytest.ini_options]
addopts = ["--strict-config", "-ra"]
testpaths = "tests"