-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "protspace"
version = "1.1.4"
description = "A visualisation tool for protein embeddings from pLMs"
authors = [{ name = "Tobias Senoner", email = "[email protected]" }]
readme = "README.md"
license = "GPL-3.0"
requires-python = ">=3.10"
dependencies = [
"dash>=2.18.1",
"dash-bootstrap-components>=1.6.0",
"dash-daq>=0.5.0",
"dash-iconify>=0.1.2",
"h5py>=3.12.1",
"matplotlib>=3.9.2",
"plotly>=5.24.1",
"scikit-learn>=1.5.2",
"kaleido>=0.2.1,!=0.2.1.post1",
"umap-learn>=0.5.7",
"pacmap>=0.7.6",
"numpy>=1.23.0",
"pandas>=2.0.0",
"dash-bio>=1.0.2",
]
[project.optional-dependencies]
webserver = ["gunicorn>=23.0.0", "python-dotenv>=1.0.1"]
[tool.uv]
dev-dependencies = [
"biopython>=1.84",
"cairosvg>=2.7.1",
"dash-mantine-components>=0.14.5",
"dash-treeview-antd>=0.0.1",
"holoviews>=1.19.1",
"hvplot>=0.11.0",
"ijson>=3.3.0",
"jupyter>=1.1.1",
"jupyter-black>=0.4.0",
"jupyter-bokeh>=4.0.5",
"panel>=1.5.2",
"pyarrow>=17.0.0",
"ruff>=0.6.9",
"xarray>=2024.9.0",
"torch==2.2",
"seaborn>=0.13.2",
"pytest>=8.3.3",
]
[project.scripts]
protspace = "protspace.main:run"
protspace-json = "protspace.utils.prepare_json:main"
protspace-feature-colors = "protspace.utils.add_feature_style:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.semantic_release]
assets = [
"uv.lock",
"requirements-py310.txt",
"requirements-py311.txt",
"requirements-py312.txt",
]
version_toml = ["pyproject.toml:project.version"]
version_variables = ["src/protspace/__init__.py:__version__"]
build_command = "bash update_deps.sh"