forked from daviddaiweizhang/fraposa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 821 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 821 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
[tool.poetry]
name = "fraposa-pgsc"
version = "1.0.2"
description = "Tools to perform ancestry projection to a reference dataset within the calculator pipeline (pgsc_calc)"
homepage = "https://github.com/PGScatalog/fraposa_pgsc"
authors = ["smlmbrt <sam.a.lambert@gmail.com>"]
license = "MIT License"
readme = "README.md"
packages = [{include = "fraposa_pgsc", from = "src"}]
[tool.poetry.scripts]
fraposa = "fraposa_pgsc.fraposa_runner:main"
fraposa_pred = "fraposa_pgsc.predstupopu:main"
fraposa_plot = "fraposa_pgsc.plotpcs:main"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^1.5.3"
scikit-learn = "^1.2.1"
pyplink = "^1.3.5"
numpy = "^1.24.2"
matplotlib = "^3.7.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"