autoBIGS.cli/pyproject.toml
Harrison Deng 41c05cc521
Some checks failed
automlst.cli/pipeline/head There was a failure building this commit
Increased user friendliness
Added default MLST scheme
Added multiple ways of defining a MLST scheme
CSV output now shows database name for each scheme ID
Now uses native argparse library for ensuring mutual exclusivity of arguments and whether or not one is required.
Updated to use 0.13.* of engine
2025-02-26 07:37:34 +00:00

58 lines
1.1 KiB
TOML

[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "autoBIGS.cli"
dynamic = ["version"]
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
dependencies = [
"autoBIGS-engine==0.13.*"
]
requires-python = ">=3.12"
description = "A CLI tool to rapidly fetch fetch MLST profiles given sequences for various diseases."
[project.urls]
Repository = "https://github.com/Syph-and-VPD-Lab/autoBIGS.cli"
Issues = "https://github.com/Syph-and-VPD-Lab/autoBIGS.cli/issues"
[project.scripts]
autoBIGS = "autobigs.cli.program:run"
[tool.setuptools_scm]
[tool.pyright]
extraPaths = ["src"]
exclude = [
"**/node_modules",
"**/__pycache__"
]
executionEnvironments = [
{root = "src"}
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.pytest.ini_options]
testpaths = [
"tests"
]
pythonpath = [
"src"
]
addopts = [
"--import-mode=importlib",
]
asyncio_mode = "auto"
[tool.pylint.main]
source-roots = "src"
[tool.pylint.format]
# Maximum number of characters on a single line.
max-line-length = 88