-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
46 lines (40 loc) · 1.06 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
[build-system]
requires = [ "poetry>=0.12",]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "vcfstats"
version = "0.6.0"
description = "Powerful statistics for VCF files"
authors = [ "pwwang <pwwang@pwwang.com>",]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/pwwang/vcfstats"
repository = "https://github.com/pwwang/vcfstats"
include = ["vcfstats/args.toml"]
[tool.poetry.dependencies]
python = "^3.8"
cyvcf2 = "^0.30"
lark-parser = "^0.12"
plotnine-prism = "^0.3"
python-slugify = "^8"
datar = { version = "^0.13", extras = ["pandas"] }
py = "^1.10"
argx = "^0.2"
rich = "^13"
[tool.poetry.dev-dependencies]
cmdy = "^0.5"
pytest = "^7"
pytest-cov = "^4"
[tool.poetry.scripts]
vcfstats = "vcfstats.cli:main"
[tool.black]
line-length = 79
target-version = ['py37', 'py38', 'py39']
include = '\.pyi?$'
[tool.pytest.ini_options]
addopts = "-vv -p 'no:asyncio' --cov-config=.coveragerc --cov=vcfstats --cov-report xml:.coverage.xml --cov-report term-missing"
filterwarnings = [
# "error"
]
console_output_style = "progress"
junit_family = "xunit1"