-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (91 loc) · 2.24 KB
/
pyproject.toml
File metadata and controls
102 lines (91 loc) · 2.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "phylim"
authors = [
{name = "Yapeng Lang", email = "u7181074@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 = ["numpy", "cogent3>=2025.7.10a3"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"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",
]
dynamic = ["version", "description"]
[tool.flit.sdist]
include = ["src/*", "pyproject.toml"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-xdist",
"nox",
"piqtree>=0.6.0",
]
dev = [
"black",
"click",
"docformatter",
"flit",
"isort",
"pytest",
"pytest-cov",
"pytest-xdist",
"nox",
"piqtree",
]
[tool.pytest.ini_options]
markers = [
"repeat: repeat mutiple times of tests"
]
addopts = ["--strict-config", "-ra"]
testpaths = "tests"
filterwarnings = [
"ignore:Outdated tree json.*:UserWarning"
]
[tool.black]
line-length = 88
target-version = ["py310"]
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| doc
| dist
| tests/data
)/
'''
[tool.isort]
atomic=true
force_grid_wrap=0
include_trailing_comma=true
lines_after_imports=2
lines_between_types=1
multi_line_output=3
use_parentheses=true
[project.urls]
"Bug Tracker" = "https://github.com/HuttleyLab/PhyLim/issues"
"Source Code" = "https://github.com/HuttleyLab/PhyLim"
[project.entry-points."cogent3.app"]
phylim = "phylim.apps:phylim"
phylim_style_tree = "phylim.apps:phylim_style_tree"
phylim_to_model_result = "phylim.apps:phylim_to_model_result"
phylim_filter = "phylim.apps:phylim_filter"