-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
154 lines (141 loc) · 2.92 KB
/
Copy pathpyproject.toml
File metadata and controls
154 lines (141 loc) · 2.92 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "cellina"
version = "1.0.0"
description = "Cellina: Dual-encoder VAE for spatial transcriptomics with adversarial domain forgetting"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Abdul Moeed"},
{name = "Stefan Schrod"},
{name = "Martin Rohbeck"},
{name = "Marc Jan Bonder"},
{name = "Pavlo Lutsik"},
{name = "Oliver Stegle"},
{name = "Daniel Dimitrov"},
]
maintainers = [
{name = "Abdul Moeed", email = "abdul.moeed@dkfz-heidelberg.de"},
{name = "Daniel Dimitrov", email = "daniel.dimitrov@embl.de"},
]
urls.Documentation = "https://github.com/PMBio/cellina"
urls.Source = "https://github.com/PMBio/cellina"
urls.Home-page = "https://github.com/PMBio/cellina"
dependencies = [
"anndata",
"scipy",
"scikit-learn",
# for debug logging (referenced from the issue template)
"session-info",
"rich",
"torch>=2.4",
"torch-geometric>=2.6",
"torch-sparse>=0.6.18",
"torch-scatter>=2.1",
"scvi-tools>=1.2.0",
]
[project.optional-dependencies]
dev = [
# CLI for bumping the version number
"bump2version",
"pre-commit",
"twine>=4.0.2"
]
doc = [
"sphinx>=4",
"sphinx-book-theme>=0.3.3",
"myst-nb",
"sphinxcontrib-bibtex>=1.0.0",
"sphinx-autodoc-typehints",
# For notebooks
"ipykernel",
"ipython",
"sphinx-copybutton",
]
test = [
"pytest",
"pytest-cov",
]
[tool.coverage.run]
source = ["cellina"]
omit = [
"**/test_*.py",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
xfail_strict = true
addopts = [
"--import-mode=importlib", # allow using test files with same name
]
[tool.isort]
include_trailing_comma = true
multi_line_output = 3
profile = "black"
skip_glob = ["docs/*"]
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.jupytext]
formats = "ipynb,md"
[tool.cruft]
skip = [
"tests",
"src/**/__init__.py",
"src/**/basic.py",
"docs/api.md",
"docs/changelog.md",
"docs/references.bib",
"docs/references.md",
"docs/notebooks/example.ipynb"
]
[tool.hatch.envs.docs]
skip-install = true
dependencies = [
"sphinx>=4",
"sphinx-book-theme>=0.3.3",
"myst-nb",
"sphinxcontrib-bibtex>=1.0.0",
"sphinx-autodoc-typehints",
"ipykernel",
"ipython",
"sphinx-copybutton",
"anndata",
"scipy",
"scikit-learn",
"numpy",
"rich",
"session-info",
]
[tool.hatch.envs.docs.scripts]
build = "PYTHONPATH=src sphinx-build -b html docs docs/_build/html"
[tool.hatch.build.targets.wheel]
packages = [
"src/cellina"
]
[tool.hatch.build.targets.sdist]
include = [
"src/cellina",
"pyproject.toml",
"README.md",
"LICENSE",
]