-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
64 lines (54 loc) · 1.33 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ParProcCo"
dynamic = ["version"]
description = "Parallel Processing Coordinator. Splits dataset processing to run parallel cluster jobs and aggregates outputs"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{name = "Peter Chang"}
]
maintainers = [
{name = "Data Analysis group", email = "dataanalysis@diamond.ac.uk"}
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">= 3.10"
dependencies = [
"h5py",
"pydantic",
"pyyaml",
"requests"
]
[project.optional-dependencies]
testing = [
"parameterized",
"pytest",
]
dev = [
"datamodel-code-generator",
]
[project.urls]
repository = "https://github.com/DiamondLightSource/ParProcCo"
[tool.setuptools.dynamic]
version = {attr = "ParProcCo.__version__"}
[tool.setuptools.packages.find]
include = ["ParProcCo", "ParProcCo.slurm", "ParProcCo.test"]
namespaces = false
[tool.setuptools]
script-files = [
"scripts/nxdata_aggregate",
"scripts/ppc_cluster_runner",
"scripts/ppc_cluster_submit",
]
[tool.pytest.ini_options]
log_cli = true
[tool.mypy]
plugins = "numpy.typing.mypy_plugin"
[tool.ruff]
line-length = 88