forked from moshi4/pyMSAviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (64 loc) · 1.51 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
[tool.poetry]
name = "pyMSAviz"
version = "0.4.2"
description = "MSA visualization python package for sequence analysis"
authors = ["moshi4"]
license = "MIT"
homepage = "https://moshi4.github.io/pyMSAviz/"
repository = "https://github.com/moshi4/pyMSAviz/"
readme = "README.md"
keywords = [
"bioinformatics",
"matplotlib",
"visualization",
"sequence-alignment",
"sequence-analysis",
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Framework :: Matplotlib",
]
include = ["tests"]
[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.scripts]
pymsaviz = "pymsaviz.scripts.cli:main"
[tool.poetry.dependencies]
python = "^3.8"
biopython = ">=1.79"
matplotlib = ">=3.5.2"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.1.2"
black = ">=22.10.0"
ruff = ">=0.0.264"
pytest-cov = ">=4.0.0"
ipykernel = ">=6.13.0"
mkdocs = ">=1.2"
mkdocstrings = { extras = ["python"], version = ">=0.19.0" }
mkdocs-jupyter = ">=0.21.0"
mkdocs-material = ">=8.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"