-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (75 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (75 loc) · 2.07 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[project]
name = "scinexus"
dynamic = ["version"]
description = "A composable app infrastructure for scientific computing"
requires-python = ">=3.11"
license = "BSD-3-Clause"
readme = "README.md"
readme_renderer = "markdown"
dependencies = [
"charset_normalizer",
"citeable",
"scitrack",
"tqdm",
"typeguard",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: System :: Distributed Computing",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Documentation = "https://scinexus.readthedocs.io"
"Bug Tracker" = "https://github.com/cogent3/scinexus/issues"
"Source Code" = "https://github.com/cogent3/scinexus/"
[project.optional-dependencies]
loky = ["loky"]
mpi = ["mpi4py"]
rich = ["rich"]
[dependency-groups]
dev = [
"pymdown-extensions>=10.21.2",
"zensical>=0.0.33",
"cogent3[extra]>=2026.4.20a0",
"pytest",
"pytest-cov",
"pytest-markdown-docs",
"pytest-xdist",
"mypy",
"nox",
"numpy",
"rich",
"ruff",
"cogapp>=3.6.0",
"click>=8.3.2",
"mkdocstrings-python>=2.0.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/scinexus/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/scinexus"]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"mpi: marks tests requiring MPI (run with nox -s testmpi)",
"internet: marks tests requiring internet access",
]
testpaths = ["tests"]
[tool.mypy]
plugins = ["scinexus._mypy_plugin"]
[tool.uv.pip]
exclude-newer = "7 days"
[tool.uv.pip.exclude-newer-package]
# but we allow other cogent3 packages to be more recent
citeable = false