-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (43 loc) · 1.38 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pynteny"
version = "1.1.2"
description = "Synteny-aware hmm searches made easy in Python"
license = "Apache-2.0"
authors = ["Semidán Robaina Estévez <[email protected]>"]
maintainers = ["Semidán Robaina Estévez <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/robaina/Pynteny"
repository = "https://github.com/robaina/Pynteny"
documentation = "https://robaina.github.io/Pynteny"
keywords = ["synteny", "hmm", "metagenomics", "bioinformatics", "hmmer"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Natural Language :: English",
]
packages = [{ include = "pynteny", from = "src" }]
include = ["src/pynteny/config.json"]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.scripts]
pynteny = "pynteny.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 = ["pynteny"]