-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (66 loc) · 1.8 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
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "combined_gene_caller"
readme = "README.md"
authors = [
{name = "MGnify team", email = "[email protected]"},
]
license = {text = "Apache Software License 2.0"}
keywords = ["bioinformatics", "gene", "metagenomics"]
dynamic = ["version"]
description = "Combined gene caller for MGnify pipeline, to combine predictions from FragGeneScan and Prodigal"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"biopython==1.81",
]
[project.optional-dependencies]
dev = [
"pre-commit==3.3.3",
"black==23.7.0",
"isort==5.12.0",
"bump-my-version==0.9.2",
]
test = [
"pytest-workflow==2.0.1",
]
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["combined_gene_caller"]
[tool.setuptools.dynamic]
version = {attr = "combined_gene_caller.__version__"}
[project.scripts]
combined_gene_caller = "combined_gene_caller.cli:combine_main"
[tool.ruff.per-file-ignores]
"ci/*" = ["S"]
[tool.ruff]
extend-exclude = ["static", "ci/templates"]
ignore = [
"RUF001", # ruff-specific rules ambiguous-unicode-character-string
"S101", # flake8-bandit assert
"S308", # flake8-bandit suspicious-mark-safe-usage
"E501", # pycodestyle line-too-long
]
line-length = 140
src = ["src", "tests"]
target-version = "py39"
[tool.ruff.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.ruff.isort]
forced-separate = ["conftest"]
force-single-line = true
[tool.black]
line-length = 140
target-version = ["py39"]
[tool.isort]
profile = "black"
[tool.bumpversion]
current_version = "1.0.4"
[[tool.bumpversion.files]]
filename = "combined_gene_caller/__init__.py"