-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
60 lines (52 loc) · 1.06 KB
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
[project]
name = "MolPILE"
version = "1.0.0"
description = ""
authors = [
{name = "Jakub Adamczyk (j-adamczyk)", email = "jadamczy@agh.edu.pl"},
{name = "Franciszek Job"},
{name = "Mateusz Król"},
{name = "Maciej Makowski"},
{name = "Jakub Poziemski"},
{name = "ML & Chemoinformatics Lab (MLCIL), AGH"}
]
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"bokeh==3.7.2",
"click==8.1.8",
"datasets==4.0.0",
"duckdb==1.3.0",
"pandas==2.2.3",
"polars==1.29.0",
"pyarrow==20.0.0",
"rapidgzip==0.14.3",
"rdkit==2024.9.5",
"scikit-fingerprints==1.16.0",
]
[dependency-groups]
dev = [
"pre-commit",
"pytest",
"ruff"
]
visualizations = [
"matplotlib",
"seaborn",
]
mol2vec = [
"deepchem==2.8.0",
"gensim==4.3.3",
"torch==2.8.0",
]
chemberta = [
"accelerate==1.10.0",
"torch==2.8.0",
"transformers==4.55.0",
]
[tool.uv.sources]
torch = [{ index = "pytorch" }]
[[tool.uv.index]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu129"
explicit = true