-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (46 loc) · 1.46 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "AutoACMG"
version = "0.3.0"
authors = [
{name = "Dzmitry Hramyka", email = "[email protected]"},
]
description = "Automated prediction of the PVS1 ACMG/AMP variant classification"
readme = "README.md"
keywords = ["variant classification", "ACMG"]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/bihealth/auto-acmg"
Documentation = "https://auto-acmg.readthedocs.io/en/latest"
[tool.pytest.ini_options]
required_plugins = ["pytest-httpx", "pytest-env"]
markers = [
"remote: marks test as calling to API at https://reev.bihealth.org",
]
env = [
"USE_CACHE=0",
"API_REEV_URL=https://reev.cubi.bihealth.org/internal/proxy",
]
filterwarnings = [
"ignore::DeprecationWarning"
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.mypy]
# Paths to search for import modules, including stubs.
mypy_path = ["stubs"]
# Treats missing imports as errors.
ignore_missing_imports = true
# Runs type checking on all files, even those without type hints.
check_untyped_defs = true
# Allows specifying per-module configurations.
[[tool.mypy.overrides]]
module = "tabix"
disallow_untyped_defs = false # Allow untyped definitions in the tabix module