-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (83 loc) · 2.29 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (83 loc) · 2.29 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fusion-oncology"
version = "0.1.0"
description = "Multi-modal cancer genomics analysis fusing XGBoost feature importance with DNABERT sequence embeddings"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "Fusion Oncology Contributors" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"biopython>=1.83",
"matplotlib>=3.8",
"numpy>=1.26",
"pandas>=2.1",
"requests>=2.31",
"scikit-learn>=1.4",
"scipy>=1.12",
"seaborn>=0.13",
"torch>=2.1",
"transformers>=4.41",
"xgboost>=2.0",
"click>=8.1",
"rich>=12.4",
"lifelines>=0.28",
"pyarrow>=14.0",
"optuna>=3.6",
"shap>=0.46",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.2",
"mypy>=1.8",
"pre-commit>=4.5.1",
"black>=26.1.0",
"nbqa>=1.7",
]
[project.scripts]
fusion-oncology = "fusion_oncology.cli:main"
[project.urls]
Repository = "https://github.com/fusion-oncology/fusion-oncology"
Documentation = "https://github.com/fusion-oncology/fusion-oncology/tree/main/docs"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "SIM", "ANN"]
ignore = ["ANN401"]
[tool.pytest.ini_options]
testpaths = ["tests"]
timeout = 120
timeout_method = "thread"
markers = [
"slow: marks tests that download data or run models (deselect with '-m \"not slow\"')",
"integration: marks integration tests requiring network access",
]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
[tool.coverage.run]
source = ["src/fusion_oncology"]
omit = ["tests/*"]