-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
87 lines (79 loc) · 1.75 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "virtool-workflow"
description = "A framework for developing bioinformatics workflows for Virtool."
version = "0.0.0"
authors = [
{name = "Ian Boyes"},
{name = "Reece Hoffman"},
{name = "Blake Smith"},
{name = "Ryan Fang"},
{name = "Matt Curtis"},
{name = "Aman Monga"},
{name = "Bryce Davidson"},
{name = "Christine Wong Chong"},
{name = "Lilly Roberts"},
{name = "Markus Swoveland"},
{name = "Ryan Fang"},
]
dynamic = ["dependencies"]
license = "MIT"
maintainers = [
{name = "Ian Boyes"},
{name = "Reece Hoffman"},
]
readme = "README.md"
repository = "https://github.com/virtool/virtool-workflow"
requires-python = "3.12.3"
[projects.scripts]
run-workflow = "virtool_workflow.cli:cli_main"
[tool.poetry]
packages = [
{ include = "virtool_workflow" },
]
[tool.poetry.dependencies]
aiofiles = "^0.7.0"
aiohttp = "^3.8.1"
biopython = "^1.81"
click = "^8.1.7"
orjson = "^3.9.9"
pydantic-factories = "^1.17.3"
pyfixtures = "^1.0.0"
sentry-sdk = "^2.3.1"
virtool-core = "^14.0.4"
structlog-sentry = "^2.2.1"
[tool.poetry.group.dev.dependencies]
piccolo-theme = "^0.22.0"
pytest = "^7.4.2"
pytest-aiohttp = "^1.0.0"
pytest-asyncio = "^0.21.0"
pytest-mock = "^3.10.0"
pytest-structlog = "^0.6"
ruff = "^0.4.6"
sphinx = "^4.0.2"
sphinx-autobuild = "^2021.3.14"
sphinx-nameko-theme = "^0.0.3"
sphinx-toolbox = "^3.5.0"
syrupy = "^3.0.5"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff]
exclude = [
"docs",
".eggs",
".git",
".github",
".mypy_cache",
".pytest-cache",
".ruff_cache",
"__pypackages__",
]
[tool.ruff.lint]
ignore = [
"ANN101",
"D203",
"D213"
]
select = ["ALL"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"