forked from PGScatalog/pgscatalog_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (26 loc) · 932 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
[tool.poetry]
name = "pgscatalog_utils"
version = "0.1.1"
description = "Utilities for working with PGS Catalog API and scoring files"
homepage = "https://github.com/PGScatalog/pgscatalog_utils"
authors = ["Benjamin Wingfield <[email protected]>", "Samuel Lambert <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.scripts]
combine_scorefiles = "pgscatalog_utils.scorefile.combine_scorefiles:combine_scorefiles"
download_scorefiles = "pgscatalog_utils.download.download_scorefile:download_scorefile"
match_variants = "pgscatalog_utils.match.match_variants:match_variants"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^1.4.3"
pyliftover = "^0.4"
requests = "^2.28.1"
jq = "^1.2.2"
polars = "^0.13.59"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
pysqlar = "^0.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"