-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (49 loc) · 1.57 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "metatag"
version = "0.1.1"
description = "Metagenome functional and taxonomical annotation through phylogenetic tree placement"
license = "Apache-2.0"
authors = [
"Semidán Robaina Estévez <[email protected]>",
"José Manuel González Hernández <[email protected]>",
"Nuria Fernández <[email protected]>"
]
maintainers = ["Semidán Robaina Estévez <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/robaina/MetaTag"
repository = "https://github.com/robaina/MetaTag"
documentation = "https://github.com/robaina/MetaTag"
keywords = ["short reads", "hmm", "metagenomics", "bioinformatics", "phylogenetics", "placement", "annotation"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Natural Language :: English"
]
packages = [
{ include = "metatag", from = "src" },
]
include = ["data/merged_taxonomy.tsv"]
[tool.poetry.dependencies]
python = "3.10.0"
[tool.poetry.scripts]
metatag = "metatag.cli:main"
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # mccabe complexity
"E999", # match statement is not yet supported
"W605", # ASCII art, verbatim text
]
[tool.ruff.isort]
known-first-party = ["metatag"]