-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (65 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
72 lines (65 loc) · 2.27 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spm-python"
dynamic = ["version"]
description = "Python bindings for the SPM software."
readme = "README.md"
license = {file = "LICENSE"}
maintainers = [
{name = "Johan Medrano", email = "johan.medrano@ucl.ac.uk"},
{name = "Yael Balbastre", email = "y.balbastre@ucl.ac.uk"}
]
authors = [
{name = "Johan Medrano"},
{name = "Yael Balbastre"},
{name = "Yulia Bezsudnova"},
{name = "Arthur Mitchell"},
{name = "Peter Zeidman"},
{name = "Olivia Kowalczyk"},
]
requires-python = ">=3.6,<3.14"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"mpython-core>=25.4rc1",
"spm-runtime-r2025b >= 25.1.2 ; python_version >= '3.10'",
"spm-runtime-r2025a == 25.1.2 ; python_version == '3.9'",
"spm-runtime-r2023a == 25.1.2 ; python_version == '3.8'",
"spm-runtime-r2021b == 25.1.2 ; python_version == '3.7'",
"spm-runtime-r2020b == 25.1.2 ; python_version == '3.6'",
]
[project.optional-dependencies]
latest = ["spm-runtime == 25.1.2"]
R2025b = ["spm-runtime-R2025b == 25.1.2"]
R2025a = ["spm-runtime-R2025a == 25.1.2"]
R2024b = ["spm-runtime-R2024b == 25.1.2"]
R2024a = ["spm-runtime-R2024a == 25.1.2"]
R2023b = ["spm-runtime-R2023b == 25.1.2"]
R2023a = ["spm-runtime-R2023a == 25.1.2"]
R2022b = ["spm-runtime-R2022b == 25.1.2"]
R2022a = ["spm-runtime-R2022a == 25.1.2"]
R2021b = ["spm-runtime-R2021b == 25.1.2"]
R2021a = ["spm-runtime-R2021a == 25.1.2"]
R2020b = ["spm-runtime-R2020b == 25.1.2"]
[project.urls]
Repository = "https://github.com/spm/spm-python"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = {attr = "spm._version.__version__"}
[tool.ruff]
include = ["pyproject.toml", "spm/**/*.py", "tests/**/*.py", "scripts/**/*.py"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F811"]