-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (56 loc) · 1.92 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
# ref https://github.com/python-poetry/poetry/blob/main/pyproject.toml
[tool.poetry]
name = "bioat"
version = "0.13.5"
description = "bioat, a python package & command line toolkit for Bioinformatics and data science!"
license = "Apache-2.0"
authors = ["Huanan Herman Zhao <[email protected]>"]
maintainers = ["Huanan Herman Zhao <[email protected]>"]
readme = "README.md"
documentation = "https://bioat.readthedocs.io/en/latest/"
repository = "https://github.com/hermanzhaozzzz/bioat"
homepage = "https://github.com/hermanzhaozzzz/bioat"
keywords = ["bioat", "python", "data-science", "bioinformatics", "bioinformatics-tool"]
[tool.poetry.dependencies]
python = ">=3.10.0, <3.13.0"
pandas = ">=1.5"
numpy = ">=1.24.1"
tqdm = ">=4.64.1"
fire = ">=0.5.0"
biopython = ">=1.80"
matplotlib = ">=3.5.3"
tabulate = ">=0.9.0"
statsmodels = ">=0.13.5"
requests = ">=2.31.0"
coloredlogs = ">=15.0.1"
psutil = ">=5.9.8"
openpyxl = ">=3.1.2"
matplotlib-inline = ">=0.1.7"
beautifulsoup4 = ">=4.12.3"
selenium = ">=4.1.3"
scikit-learn = ">=1.0.2"
scipy = ">=1.7.3"
seaborn = "^0.13.2"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-autobuild", "sphinx-rtd-theme", "myst-parser", "toml"]
[tool.poetry.group.dev.dependencies]
toml = ">=0.10.2"
ruff = ">=0.7.1" # 替换 black、isort、flake8、mypy 等功能
[tool.ruff]
line-length = 88
extend-include = ["*.ipynb"]
lint.extend-ignore = ["E501"] # 忽略行长限制,让 `black` 风格兼容
lint.select = ["E", "F", "I", "N", "B", "A"] # 启用特定规则组
lint.fixable = ["ALL"] # 启用 Ruff 的全部可自动修复规则
[tool.poetry.group.test.dependencies]
pytest = ">=7.1.3"
pytest-cov = ">=3.0"
[tool.poetry.group.github-actions]
optional = true
[tool.poetry.group.github-actions.dependencies]
pytest-github-actions-annotate-failures = "^0.1.7"
[tool.poetry.scripts]
bioat = "bioat.__main__:main"
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"