-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 2.13 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
[project]
# Note that this file is only installing the memilio-simulation package. For installing the other Python packages,
# please go to the respective folder pycode/memilio-* and install from there.
name = "memilio-simulation"
dynamic = ["version"]
description = "Part of MEmilio project, Python bindings to the C++ libraries that contain the models and simulations."
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
authors = [{ name = "MEmilio Team" }]
maintainers = [
{ email = "martin.kuehn@dlr.de" }
]
dependencies = [
# smaller numpy versions cause a security issue, 1.25 does not work together with pyfakefs
"numpy>=1.22,!=1.25.*",
# smaller pandas versions contain a bug that sometimes prevents reading
"pandas>=2.0.0"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"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",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows"
]
[project.optional-dependencies]
dev = []
[project.urls]
Homepage = "https://github.com/SciCompMod/memilio"
Team = "https://memilio.readthedocs.io/en/latest/team.html"
[build-system]
requires = [
"scikit-build-core>=0.9.0",
"setuptools>=68",
"setuptools-scm>=8",
"wheel"
]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
cmake.version = ">=3.13"
cmake.args = ["-DMEMILIO_BUILD_SHARED_LIBS:BOOL=ON"]
wheel.packages = ["pycode/memilio-simulation/memilio"]
wheel.install-dir = "memilio/simulation"
build-dir = "pycode/build/memilio-simulation"
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.cibuildwheel]
# Disable some wheels
skip = ["pp*", "*musllinux*", "*-win32", "cp314*"]
[tool.autopep8]
max-line-length = 79
[tool.pyright]
include = ["pycode"]
exclude = ["pycode/memilio-simulation"]