-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.44 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "holoseq"
dynamic = ["version"]
description = ""
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">3.10,<3.13"
authors = [{name = "HoloViz developers", email = "developers@holoviz.org"}]
maintainers = [{name = "HoloViz developers", email = "developers@holoviz.org"}]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"bokeh",
"dask[dataframe]",
"datashader",
"holoviews[recommended]",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"ruff",
]
notebooks = [
"jupyterlab",
]
converters = [
"hic-straw"
]
test = [
"pytest",
"pytest-cov",
]
[tool.setuptools.dynamic]
version = {attr = "holoseq.__version__"}
[tool.ruff]
exclude = [
"notebooks",
"scripts",
]
line-length = 100
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all" # Do not allow relative imports.