-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.08 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "omics_toolbox"
version = "0.1.0"
description = "Central utility package for Krishnaswamy Lab multiomics tools."
authors = [
{ name = "Krishnaswamy Lab" },
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
# Krishnaswamy Lab packages
"phate",
"mioflow",
"meld",
"graphtools",
# Core scientific stack
"numpy",
"pandas",
"scanpy",
"scikit-learn",
"scipy",
"matplotlib",
"seaborn",
# Utilities
"loguru",
"requests",
"tqdm",
"gdown>=5.2.1",
"ritini>=0.0.2",
]
[project.optional-dependencies]
notebooks = [
"jupyterlab",
"notebook",
"ipywidgets",
]
dev = [
"ruff",
"jupyterlab",
]
[tool.ruff]
line-length = 99
src = ["omics_toolbox"]
include = ["pyproject.toml", "omics_toolbox/**/*.py"]
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
known-first-party = ["omics_toolbox"]
force-sort-within-sections = true