-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 745 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 745 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
30
31
32
33
34
35
36
37
38
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lasso-workbench"
version = "0.3.0"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24",
"pandas>=2.0",
"biopython>=1.81",
"scipy>=1.10",
"scikit-learn>=1.3",
"gradio>=4.0",
"torch>=2.1",
"transformers>=4.38",
"huggingface_hub>=1.3.2",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
]
[project.scripts]
lasso-workbench = "lasso_workbench.__main__:main"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"*" = ["*.json", "*.csv", "*.hmm", "*.html", "*.qss"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"