-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 924 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 924 Bytes
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
[build-system]
requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "tinympc"
version = "0.0.7"
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",
"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]