-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (77 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (77 loc) · 1.6 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "cancerag"
version = "0.1.0"
description = "This is a pipeline for identifying biased agonists"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"biopython>=1.85",
"biotite>=1.4.0",
"black>=25.1.0",
"chembl-webresource-client>=0.10.9",
"ipywidgets>=8.1.7",
"jupyter>=1.1.1",
"nglview>=3.1.4",
"numpy>=2.3.3",
"pandas>=2.3.2",
"py3dmol>=2.5.2",
"rdkit>=2025.3.6",
"scikit-learn>=1.7.2",
"scipy>=1.11.0",
"seaborn>=0.13.2",
"matplotlib>=3.10.2",
"tqdm>=4.67.1",
"xmltodict>=1.0.0",
"ruff>=0.13.2",
"rich>=14.1.0",
"plotly>=6.3.1",
"pyyaml>=6.0",
"xgboost>=2.0.0",
"lightgbm>=4.0.0",
"shap>=0.44.0",
"pydantic>=2.0.0",
"openpyxl>=3.1.0",
"umap-learn>=0.5.0",
"tenacity>=9.1.2",
"gradio>=5.49.1",
"streamlit>=1.51.0",
"boruta>=0.4.3",
"gradio-molecule3d>=0.0.7",
"meeko>=0.7.1",
"gemmi>=0.7.5",
"pdbfixer>=1.12.0",
"prolif>=2.1.0",
"mdanalysis>=2.10.0",
"pandera>=0.31.1",
"catboost>=1.2.8",
"transformers>=5.7.0",
"torch>=2.11.0",
"mlflow>=3.11.1",
"optuna>=4.5.0",
"python-docx>=1.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.12.0",
"pylint>=3.0.0",
"mypy>=1.8.0",
"bandit>=1.7.0",
"radon>=6.0.0",
"safety>=3.0.0",
]
ml = [
"catboost>=1.2.0",
"boruta>=0.3.0",
"optuna>=3.5.0",
]
docs = [
"sphinx>=7.0.0",
"sphinx-rtd-theme>=2.0.0",
"myst-parser>=2.0.0",
]
dashboard = [
"streamlit>=1.31.0",
"dash>=2.14.0",
]