-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
59 lines (42 loc) · 1011 Bytes
/
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
[tool.hatch.version]
path = "boss/__init__.py"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "boss_runs"
description = "Dynamic, adaptive sampling during nanopore sequencing"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"readfish[all]==2024.3.0",
"Bottleneck~=1.3.7",
"scipy~=1.12.0",
"numba~=0.59.0",
"mappy~=2.28",
]
[project.urls]
homepage = "https://github.com/goldman-gp-ebi/BOSS-RUNS/"
[project.optional-dependencies]
dev = [
"pytest~=8.0.0",
"pytest-cov~=4.1.0",
"pytest-timeout~=2.2.0",
]
[project.scripts]
boss = "boss.BOSS:main"
[tool.hatch.build.targets.sdist]
exclude = [
"/data",
"/doc",
"/tests",
"/.git",
]
[tool.hatch.build.targets.wheel]
packages = ["boss"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"