forked from goldman-gp-ebi/BOSS-RUNS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (43 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
60 lines (43 loc) · 1.01 KB
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
[tool.hatch.version]
path = "boss/__init__.py"
[build-system]
requires = ["hatchling>1.26.1"]
build-backend = "hatchling.build"
[project]
name = "boss_runs"
description = "Dynamic, adaptive sampling during nanopore sequencing"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"readfish[all]==2024.3.0",
"Bottleneck~=1.3.7",
"scipy~=1.12.0",
"numba~=0.59.0",
"mappy~=2.28",
"psutil~=7.0.0",
]
[project.urls]
homepage = "https://github.com/goldman-gp-ebi/BOSS-RUNS/"
[tool.hatch.envs.dev]
dev-mode = true
dependencies = [
"pytest",
"pytest-cov",
"pytest-timeout",
]
[project.scripts]
boss = "boss.BOSS:main"
[tool.hatch.build.targets.sdist]
only_include = [
"boss/**",
"README.md",
"LICENSE",
]
[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"