autoBIGS.engine/pyproject.toml

56 lines
1.0 KiB
TOML
Raw Normal View History

[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
2025-01-22 21:05:19 +00:00
name = "autoBIGS.engine"
dynamic = ["version"]
readme = "README.md"
dependencies = [
2025-01-23 17:57:07 +00:00
"biopython==1.85",
"aiohttp[speedups]==3.11.*",
]
requires-python = ">=3.12"
2025-01-10 21:13:26 +00:00
description = "A library to rapidly fetch fetch MLST profiles given sequences for various diseases."
[project.urls]
Homepage = "https://github.com/RealYHD/autoBIGS.engine"
Source = "https://github.com/RealYHD/autoBIGS.engine"
2025-01-23 17:57:07 +00:00
Issues = "https://github.com/RealYHD/autoBIGS.engine/issues"
2025-01-09 07:54:13 +00:00
[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