-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
76 lines (68 loc) · 1.22 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
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
[tool.poetry]
name = "aphylogeo"
version = "1.0.0"
description = "A phylogenetic and geographic analysis tool"
authors = ["'Tahiri Lab'"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tahiri-lab/aPhyloGeo"
include = ["bin/**"]
[tool.poetry.dependencies]
python = ">=3.9.0"
bio = "^1.5.9"
multiprocess = "^0.70.15"
pandas = "^2.1.1"
psutil = "^5.9.5"
pyyaml = "^6.0.1"
pytest = "^7.4.2"
numpy = "^1.26.0"
cython = "^3.0.2"
robinson-foulds = "^1.2"
ete3 = "^3.1.3"
dendropy = "^4.6.1"
textdistance = "^4.6.0"
typer = "^0.13.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "aphylogeo/"
testpaths = 'tests/'
[tool.ruff]
line-length = 130
ignore = ["F405"]
fix = true
[tool.black]
--line-length = 130
exclude = '''
(
tests/testFiles
| img
| bin
| build
| dist
| setup.py
| .venv
)
'''
[tool.isort]
profile = "black"
line_length = 130
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
skip_glob = '''
(
tests/testFiles
| img
| bin
| build
| dist
| setup.py
| .venv
)
'''