-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
37 lines (33 loc) · 1.02 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools>=70.1.1",
# On Windows, use the CasADi vcpkg registry and CMake bundled from MSVC
"casadi>=3.6.7; platform_system!='Windows'",
# Note: the version of CasADi as a build-time dependency should be matched
# cross platforms, so updates to its minimum version here should be accompanied
# by a version bump in https://github.com/pybamm-team/casadi-vcpkg-registry.
"cmake; platform_system!='Windows'",
]
build-backend = "setuptools.build_meta"
[project]
name = "pybammsolvers"
description = "Python interface for the IDAKLU solver"
requires-python = ">=3.9,<3.13"
license = {file = "LICENSE"}
dynamic = ["version", "readme"]
dependencies = [
"casadi",
"numpy<2.0"
]
[project.optional-dependencies]
dev = [
"pytest",
"setuptools",
"wheel",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["pybammsolvers"]
[tool.setuptools.dynamic]
version = {attr = "pybammsolvers.version.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}