-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.44 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cfeintact"
version = "1.23.1"
description = "A bioinformatics tool for detecting defects in HIV-1 proviral sequences."
readme = "README.md"
license = "MIT"
authors = [
{ name = "Imogen Wright", email = "[email protected]" },
{ name = "British Columbia Centre for Excellence in HIV/AIDS", email = "[email protected]" },
]
dependencies = [
"biopython>=1.83",
"click>=8.0",
"scipy>=1.1",
"aligntools==1.2.1",
]
[project.optional-dependencies]
test = [
# Dependencies required for running the test suite
"pytest",
"pytest-cov",
"requests",
]
dev = [
# Dependencies required for development (linting, type checking, etc.)
"flake8",
"mypy",
"types-requests",
]
[project.scripts]
cfeintact = "cfeintact.main:cli"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
include = [ "src/cfeintact" ]
[tool.pytest.ini_options]
pythonpath = "src"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"overnight: for tests that take hours to complete (deselect with '-m \"not overnight\"')",
"serial"
]
[tool.mypy]
files = ["src", "tests"]
strict_optional = true
allow_untyped_calls = true
warn_return_any = true
warn_unused_ignores = true
disallow_untyped_defs = false
strict = true
[[tool.mypy.overrides]]
module = ["scipy.*", "pytest.*"]
ignore_missing_imports = true