-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.4 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
[tool.poetry]
name = "npg_notify"
description = "Utility for client notifications"
version = "0.0.0"
authors = ["Marina Gourtovaia"]
license = "GPL-3.0-or-later"
readme = "README.md"
[tool.poetry.scripts]
npg_qc_state_notification = "npg_notify.porch_wrapper.qc_state:run"
npg_ont_event_notification = "npg_notify.ont.event:main"
[tool.poetry.dependencies]
python = "^3.11"
SQLAlchemy = { version="^2.0.37", extras=["pymysql"] }
SQLAlchemy-Utils = "^0.41.2"
cryptography = "^44.0.0"
PyYAML = "^6.0.0"
npg_porch_cli = { git="https://github.com/wtsi-npg/npg_porch_cli.git", tag="0.1.0" }
partisan = { url = "https://github.com/wtsi-npg/partisan/releases/download/2.13.0/partisan-2.13.0.tar.gz" }
npg-python-lib = { url = "https://github.com/wtsi-npg/npg-python-lib/releases/download/0.3.4/npg_python_lib-0.3.4.tar.gz" }
requests = "^2.32.0"
structlog = "^24.4.0"
[tool.poetry.dev-dependencies]
pytest = "^8.3.4"
pytest-it = "^0.1.5"
requests-mock = "^1.12.1"
ruff = "^0.9.1"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
pattern = "default-unprefixed"
[tool.ruff]
# Set the maximum line length to 79.
line-length = 79
[tool.ruff.lint]
select = [
# flake8
"W",
]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = [
"src"
]