-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
38 lines (33 loc) · 885 Bytes
/
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
[tool.poetry]
name = "ncbitax2lin"
version = "2.3.1"
description = "A tool that converts NCBI taxonomy dump into lineages"
authors = ["Zhuyi Xue <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/zyxue/ncbitax2lin"
license = "MIT"
[tool.poetry.dependencies]
fire = "^0.3.1"
pandas = "^1.0.3"
python = "^3.7,<3.10"
typing-extensions = "^3.7.4"
[tool.poetry.dev-dependencies]
autoflake = "^1.3.1"
black = "^22.1.0"
coverage = "^5.4"
isort = "^5.7.0"
mypy = "^0.941"
pylint = "^2.5.0"
pytest = "^5.2"
pytest-parallel = "^0.1.0"
tox = "^3.21.4"
[tool.poetry.scripts]
ncbitax2lin = "ncbitax2lin.ncbitax2lin:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
# https://pycqa.github.io/isort/docs/configuration/black_compatibility/
[tool.isort]
profile = "black"
multi_line_output = 3
known_first_party = ["ncbitax2lin"]