-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
68 lines (61 loc) · 1.43 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
[tool.poetry]
name = "cafeplotter"
version = "0.2.0"
description = "A tool for plotting CAFE5 gene family expansion/contraction result"
authors = ["moshi4"]
license = "MIT"
repository = "https://github.com/moshi4/CafePlotter/"
readme = "README.md"
keywords = [
"bioinformatics",
"phylogenetics",
"molecular-evolution",
"visualization",
"matplotlib",
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Framework :: Matplotlib",
]
include = ["tests"]
packages = [{ include = "cafeplotter", from = "src" }]
[tool.poetry.scripts]
cafeplotter = "cafeplotter.scripts:cafeplotter.main"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=src --tb=line --cov-report=xml --cov-report=term"
testpaths = ["tests"]
# Lint Rules: https://beta.ruff.rs/docs/rules
[tool.ruff]
select = ["E", "F", "W", "I", "D", "B"]
ignore = [
"D100",
"D101",
"D104",
"D105",
"D205",
"D400",
"D401",
"D403",
"D415",
"B905",
]
src = ["src", "tests"]
line-length = 88
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.poetry.dependencies]
python = ">=3.8.1"
matplotlib = ">=3.5.3"
biopython = ">=1.80"
numpy = ">=1.21.1"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.1"
pytest-cov = ">=4.0.0"
black = ">=23.1.0"
ruff = ">=0.0.264"
ipykernel = ">=6.21.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"