-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (40 loc) · 911 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (40 loc) · 911 Bytes
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
[tool.poetry]
name = "contam-estimate"
version = "0.1.0"
description = "estimating contamination from a diploid sequencing from VCF"
authors = ["Douglas Wu <wckdouglas@gmail.com>"]
license = "MIT"
packages = [{"include" = "diploid_contam"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
scipy = "^1.7.3"
numpy = "^1.21.4"
pydantic = "^1.9.1"
pysam = "^0.19.1"
more-itertools = "^8.13.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
mypy = "^0.960"
pytest-cov = "^3.0.0"
black = "^22.3.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
dev = ["pytest", "mypy", "pytest-cov"]
[tool.mypy]
plugins = [
"numpy.typing.mypy_plugin",
"pydantic.mypy"
]
[[tool.mypy.overrides]]
module = [
"pysam.*",
"scipy.*"
]
ignore_missing_imports = true
[tool.isort]
profile = "black"
[tool.black]
line-length = 120