-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.11 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
47
48
[project]
name = "varscore"
description = "A library for common functions in variant effect prediction & prioritization."
authors = [
{ name = "Ivy Evergreen" },
{ name = "Salil Deshpande" },
{ name = "Riya Sinha" },
]
version = "0.0.1a"
requires-python = ">= 3.8, < 3.10"
dependencies = [
"deeplift==0.6.13.0",
"fastapi>=0.103.2",
"intervaltree>=3.1.0",
"logomaker",
"numpy==1.23.4",
"pandas>=1.3.4",
"polars==1.8.2",
"protobuf<=3.20",
"pybedtools==0.10.0",
"pyfaidx==0.6.1",
"kundajelab-shap==1",
"scipy==1.10.1",
# "tangermeme>=0.4.0",
"tensorflow==2.8.1",
"tensorflow-probability==0.14.0",
# "tf-keras>=2.15.0",
"uvicorn>=0.33.0",
]
keywords = ["variant scoring", "variant effect", "variant prioritization", "variant", "scoring", "effect", "prioritization", "genomics", "chrombpnet"]
[project.urls]
Repository = "https://github.com/kundajelab/varscore.git"
Issues = "https://github.com/kundajelab/varscore/issues"
[project.optional-dependencies]
dev = [
"pytest",
]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"pytest>=8.3.4",
]