forked from scverse/scanpy-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 939 Bytes
/
pyproject.toml
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
[project]
name = "scanpy-tutorials"
dynamic = ["version"]
authors = [
{ name = "Alex Wolf" },
{ name = "Fidel Ramirez" },
{ name = "Sergei Rybakov" },
]
requires-python = ">=3.9"
dependencies = [
"sphinx>=1.4",
"nbsphinx>=0.4",
"nbclean",
"sphinx-book-theme>=1.1",
# see https://github.com/scverse/cookiecutter-scverse/pull/205
"docutils>=0.8,!=0.18.*,!=0.19.*",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
bypass-selection = true # This is not a package
[tool.hatch.envs.default]
python = "3.11"
[tool.hatch.envs.default.scripts]
build = "sphinx-build -M html . ./_build"
[tool.ruff]
extend-exclude = ["scanpy_workshop/"]
[tool.ruff.lint]
ignore = [
"F821", # R cells can sometimes define variables
"E741", # Fonts these days don’t display I and l in a confusable way
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]