-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (87 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
98 lines (87 loc) · 1.71 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "steep"
dynamic = ["version"]
authors = [
{ name="Shahul Alam", email="alam.shahul@gmail.com" },
]
dependencies = [ # TODO: check which are necessary
"packaging",
"hydra-core",
"omegaconf",
"wandb",
"tqdm",
"numpy",
"scipy",
"scikit-learn",
"torchmetrics",
"torch>=2.0",
"torch_geometric",
"anndata",
"awkward",
"scanpy",
"squidpy",
"mygene",
]
description = "Steep: Compression Strategies for Efficient Representation of Spatial Transcriptomes"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.hatch.build.targets.sdist]
include = [
"steep/*.py",
"steep/**/*.py",
"steep/config/**.yaml",
]
[tool.hatch.build.targets.wheel]
include = [
"steep/*.py",
"steep/**/*.py",
"steep/config/**.yaml",
]
[tool.hatch.version]
path = "steep/__about__.py"
[tool.flake8]
max-line-length = 120
count = true
extend-ignore = [
"E203", # conflicting with black style slicing
"D107", # only need docstring at class level, no need at __init__
]
exclude = [
".nox",
".git",
"__pycache__",
"build",
"dist",
"*.pyc",
"*.egg-info",
".eggs",
]
[tool.black]
line-length = 120
preview = true
[tool.isort]
profile = "black"
line_length = 120
[tool.pytest.ini_options]
markers = [
"integration: marks tests for entire Steep pipeline"
]
# Dev requirements
[dependency-groups]
dev = [
"ipdb",
"ipython",
"nox",
"pre-commit",
"pytest",
"python-dotenv"
]