18 lines
314 B
TOML
18 lines
314 B
TOML
[project]
|
|
name = "pyzed"
|
|
version = "0.1.0"
|
|
description = "Wrapper for ZED SDK"
|
|
requires-python = ">=3.12"
|
|
dependencies = []
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["pyzed"]
|
|
|
|
[tool.setuptools.package-data]
|
|
pyzed = ["*.so", "*.pyi"]
|
|
|