-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.03 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
[build-system]
requires = [
"scikit-build-core<0.11",
"pybind11",
"exceptiongroup<1.3; python_version < '3.11'",
]
build-backend = "scikit_build_core.build"
[project]
name = "tinympc"
version = "0.0.8"
authors = [
{ name="Sam Schoedel", email="seschoedel@gmail.com" },
{ name="Khai Nguyen", email="khai.nx1201@gmail.com" },
{ name="Ishaan Mahajan", email="ishaanamahajan@gmail.com" },
]
description = "Python wrapper for TinyMPC"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {file = "LICENSE"}
dependencies = [
"numpy>=1.7",
"scipy>=0.13.2,<1.12.0; python_version < '3.13'",
"scipy>=1.14.1; python_version >= '3.13'",
"setuptools"
]
[project.urls]
Homepage = "https://tinympc.org"
[tool.scikit-build]
install.components = ["python", "codegen"]
wheel.install-dir = "tinympc"
[tool.scikit-build.cmake.define]
TINYMPC_EXT_MODULE_NAME = "ext_tinympc"
[tool.setuptools_scm]