-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
65 lines (57 loc) · 1.56 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
[build-system]
requires = ["setuptools>=68", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "mlarray"
description = "Array format specialized for Machine Learning with Blosc2 backend and standardized metadata."
readme = "README.md"
requires-python = ">= 3.10"
license = { text = "MIT" }
authors = [{ name = "Karol Gotkowski", email = "karol.gotkowski@dkfz.de" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
keywords = ["copier", "template", "python"]
dependencies = [
"blosc2>=3",
"numpy>=2",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"build>=1.0",
"pytest>=7.0",
"twine>=4.0",
"setuptools_scm[toml]>=8.0",
]
docs = [
"mkdocs-material>=9.5",
"mkdocs-include-markdown-plugin>=6.0",
"mkdocstrings[python]>=0.25",
"pymdown-extensions>=10.0",
]
all = [
"medvol",
]
[project.urls]
Homepage = "https://github.com/MIC-DKFZ/mlarray"
Source = "https://github.com/MIC-DKFZ/mlarray"
Issues = "https://github.com/MIC-DKFZ/mlarray/issues"
[project.scripts]
mlarray_header = "mlarray.cli:cli_print_header"
mlarray_convert = "mlarray.cli:cli_convert_to_mlarray"
[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true
[tool.setuptools.data-files]
"mlarray/assets" = ["assets/*"]
[tool.setuptools.packages.find]
where = ["."]
include = ["mlarray*"]
[tool.setuptools_scm]
fallback_version = "0.0.0"
local_scheme = "node-and-date"