generated from yxtay/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
33 lines (28 loc) · 1001 Bytes
/
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
[tool.poetry]
name = "postprocessing_variant_calls"
version = "0.2.7"
description = "This hosts multiple scripts necessary for filtering and processing of variant calls in the vcfs/txt file generated by callers."
authors = ["Ronak Shah <[email protected]>", "Karthigayini Sivaprakasam <[email protected]>", "Eric Buehler <[email protected]>"]
readme = "README.md" # Markdown files are supported
repository = "https://github.com/msk-access/postprocessing_variant_calls"
homepage = "https://cmo-ci.gitbook.io/postprocessing_variant_calls/"
packages = [
{ include = "utils" },
{ include = "postprocessing_variant_calls" }
]
[tool.poetry.dependencies]
python = ">=3.8"
typer = {extras = ["all"], version = "*"} # "^0.3"
PyVCF3 = "*"
pandas = "*"
numpy = "*"
[tool.poetry.dev-dependencies]
flake8 = "*"
pytest = "*"
typer-cli = "*"
black = "*"
[tool.poetry.scripts]
pv = "postprocessing_variant_calls.main:app"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"