-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
68 lines (61 loc) · 1.56 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 = "cogclassifier"
version = "1.0.5"
description = "A tool for classifying prokaryote protein sequences into COG functional category"
authors = ["moshi"]
license = "MIT"
homepage = "https://github.com/moshi4/COGclassifier/"
repository = "https://github.com/moshi4/COGclassifier/"
readme = "README.md"
keywords = [
"COG",
"bioinformatics",
"genomics",
"functional-annotation",
"functional-analysis",
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
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.dependencies]
python = ">=3.8"
requests = ">=2.27.1"
pandas = ">=1.4.1"
altair = ">=4.2.0"
[tool.poetry.group.dev.dependencies]
black = ">=22.1.0"
ruff = ">=0.0.264"
pytest = ">=7.1.1"
pytest-cov = ">=3.0.0"
[tool.poetry.scripts]
COGclassifier = "cogclassifier.cogclassifier:main"
plot_cog_classifier_barchart = "cogclassifier.script.plot_cog_classifier_barchart:main"
plot_cog_classifier_piechart = "cogclassifier.script.plot_cog_classifier_piechart:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"