-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (34 loc) · 1.04 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
[tool.poetry]
name = "camlhmp"
version = "1.1.0"
description = "Classification through yAML Heuristic Mapping Protocol"
authors = [
"Robert A. Petit III <[email protected]>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/rpetit3/camlhmp"
repository = "https://github.com/rpetit3/camlhmp"
keywords = ["bioinformatics", "bacteria", "serotype", "genotype"]
[tool.poetry.scripts]
camlhmp = "camlhmp.cli.camlhmp:main"
camlhmp-blast-alleles = "camlhmp.cli.blast.alleles:main"
camlhmp-blast-regions = "camlhmp.cli.blast.regions:main"
camlhmp-blast-targets = "camlhmp.cli.blast.targets:main"
camlhmp-blast-thresholds = "camlhmp.cli.blast.thresholds:main"
camlhmp-extract = "camlhmp.cli.extract:main"
[tool.poetry.dependencies]
python = "^3.11"
pyyaml = "^6.0.1"
executor = "^23.2"
rich = "^13.7.1"
rich-click = "^1.7.4"
biopython = "^1.83"
[tool.poetry.group.dev.dependencies]
executor = "^23.2"
flake8 = "^7.0.0"
isort = "^5.13.2"
black = "^24.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"