forked from alw399/SLIDE_py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
139 lines (116 loc) · 2.54 KB
/
pyproject.toml
File metadata and controls
139 lines (116 loc) · 2.54 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
[build-system]
requires = ["setuptools >= 61.0", "numpy >= 1.20.0"]
build-backend = "setuptools.build_meta"
[project]
name = "loveslide"
version = "1.0.0"
authors = [
{ name="Ally Wang", email="alw399@pitt.edu" },
{ name="Swapnil Keshari", email="swk25@pitt.edu" },
{ name="Aaron R", email="aar126@pitt.edu" },
]
description = "Python implementation of SLIDE (LOVE + Knockoffs)"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
dependencies = [
# Core scientific computing (actually used in code)
"numpy>=1.20.0",
"scipy>=1.7.0",
"scikit-learn>=1.0.0",
"pandas>=2.0.0",
"joblib>=0.14.1",
"statsmodels>=0.14.0",
# SDP solver (pure Python fallback for knockoffs)
"cvxpy>=1.3.0",
# Progress bars and parallelization
"tqdm>=4.60.0",
"pqdm",
# Graph analysis
"networkx>=3.0.0",
# Visualization (core)
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
# Utilities
"easydict",
"pyyaml>=6.0",
]
[project.optional-dependencies]
# Visualization extras
viz = [
"seaborn>=0.12.0",
"adjustText>=1.0.0",
"altair>=5.0.0",
"wordcloud",
"pysankeybeta",
]
# Single-cell analysis
single-cell = [
"scanpy>=1.10.0",
"anndata>=0.10.0",
"magic-impute",
]
# Deep learning
deep-learning = [
"torch>=2.0.0",
"torchvision>=0.15.0",
"pyro-ppl",
]
# Genomics tools
genomics = [
"genomepy>=0.16.0",
"goatools>=1.4.0",
"h5py>=3.8.0",
"pyarrow>=12.0.0",
]
# Spatial analysis
spatial = [
"pysal>=24.1",
"commot",
]
# Extended graph analysis
graph-extended = [
"python-igraph>=0.10.0",
]
# Optimization extras
optimization = [
"numba>=0.57.0",
"group-lasso",
]
# Web/interactive tools
web = [
"shiny>=0.6.0",
"ipykernel",
]
# Additional progress bars
progress-extended = [
"enlighten",
]
# R integration
r = [
"rpy2>=3.5.0,<3.6.0",
]
# Development tools
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
# Everything (for legacy compatibility)
full = [
"loveslide[viz,single-cell,deep-learning,genomics,spatial,graph-extended,optimization,web,progress-extended,r]",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"loveslide.knockoff._vendor" = ["**/*"]
"loveslide.dsdp_solver" = ["*.so", "dsdp/**/*"]
[project.urls]
Homepage = "https://github.com/alw399/SLIDE_py"
Issues = "https://github.com/alw399/SLIDE_py/issues"