-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (68 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
83 lines (68 loc) · 1.56 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
79
80
81
82
83
# No [build-system], no [project] -> uv won't try to build your code.
# It will only create a venv and install these dependencies.
[tool.uv]
managed = true
default-groups = ["deps"]
required-environments = [
"sys_platform == 'win32' and platform_machine == 'AMD64'",
]
[dependency-groups]
deps = [
# Core
"numpy",
"scipy",
"dill",
"pandas",
"numba",
"pyteomics",
"pymzml",
"brain-isotopic-distribution",
"biosaur2",
"lxml",
"regex",
"tqdm",
"peppy_sage",
# Visualization
"matplotlib",
"seaborn",
"plotly",
"matplotlib-venn",
"upsetplot",
"pillow",
# Data engineering / IO
"pyarrow",
"polars",
# Classical ML / stats
"scikit-learn",
"xgboost",
"statsmodels",
"joblib",
# Optimization / math extras
"cvxopt",
"ptinnls",
# Profiling & perf tools
"line-profiler",
"memory-profiler",
"pyinstrument",
# GUI (Qt + optional Tk themes)
"PySide6",
"shiboken6",
"sv-ttk",
"ttkthemes",
# OS-specific helper
"pywin32; platform_system == 'Windows'",
# TensorFlow per platform
# Mac
"tensorflow==2.15.1; platform_system == 'Darwin' and platform_machine == 'arm64'",
"tensorflow-metal==1.2.*; platform_system == 'Darwin' and platform_machine == 'arm64'",
# Windows
"tensorflow-intel==2.15.1; sys_platform == 'win32' and platform_machine == 'AMD64'",
# Linux
"tensorflow==2.15.1; platform_system == 'Linux'",
# Important: keep TF-Keras (2.15) and block standalone Keras 3
"keras==2.15.*",
# Shared TF tooling
"tensorboard",
"tensorboard-data-server",
"tensorflow-io-gcs-filesystem",
]