This repository was archived by the owner on Aug 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.75 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
[tool.poetry]
name = "spatialdata_xenium_explorer"
version = "0.1.7"
description = "Converting any SpatialData object into files that can be open by the Xenium Explorer"
documentation = "https://quentinblampey.github.io/spatialdata_xenium_explorer/"
homepage = "https://quentinblampey.github.io/spatialdata_xenium_explorer/"
repository = "https://github.com/quentinblampey/spatialdata_xenium_explorer"
authors = ["Quentin Blampey <quentin.blampey@gmail.com>"]
packages = [{ include = "spatialdata_xenium_explorer" }]
license = "BSD-3-Clause"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
[tool.poetry.scripts]
spatialdata_xenium_explorer = "spatialdata_xenium_explorer.main:app"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
botocore = "1.34.19"
spatialdata = ">=0.1.2"
typer = ">=0.9.0"
[tool.poetry.group.dev.dependencies]
black = ">=22.8.0"
isort = ">=5.10.1"
pytest = ">=7.1.3"
ipykernel = ">=6.25.2"
mkdocs-material = ">=9.3.2"
mkdocstrings = ">=0.23.0"
mkdocstrings-python = ">=1.7.3"
jupyter-black = ">=0.3.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
skip_glob = ["*/__init__.py"]