-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (62 loc) · 2.16 KB
/
pyproject.toml
File metadata and controls
65 lines (62 loc) · 2.16 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
[build-system]
requires = ["flit_core>=3.9"]
build-backend = "flit_core.buildapi"
[project]
name = "nullstrap"
dynamic = ["version"]
description = "Python implementation of Nullstrap — a versatile method for variable selection with false discovery rate control."
authors = [{name = "Wenbin Guo", email = "wbguo@ucla.edu"}]
keywords = ["variable selection", "false discovery rate", "statistics", "machine learning", "feature selection"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24,<2.0", # Constrained to NumPy 1.x for stability
"scikit-learn>=1.7", # Requires 1.7+ for LassoCV alphas int support
"scipy>=1.10,<1.15", # Compatible with NumPy 1.x
"scikit-survival>=0.25; platform_system!='Windows'", # 0.25+ supports sklearn 1.7
]
[project.optional-dependencies]
survival = ["scikit-survival>=0.25"] # 0.25+ supports sklearn 1.7
test = [
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-xdist>=3.0",
"pytest-timeout>=2.0"
]
dev = [
"black>=23.0",
"isort>=5.12",
"flake8>=6.0",
"mypy>=1.0",
"pre-commit>=3.0"
]
docs = [
"sphinx>=4.0.0",
"sphinx-rtd-theme>=1.0.0",
"myst-parser>=0.18.0",
"linkify-it-py>=2.0.0",
"sphinx-autodoc-typehints>=1.0"
]
all = [
"nullstrap[survival,test,dev,docs]"
]
[project.urls]
Repository = "https://github.com/PromptBio/pyNullstrap"
Documentation = "https://github.com/PromptBio/pyNullstrap"
Issue Tracker = "https://github.com/PromptBio/pyNullstrap/issues"