[PyAssimp] Create pyproject.toml (#6378)

* Create pyproject.toml
This commit is contained in:
thedestroyer4312
2025-11-11 08:31:51 +00:00
committed by GitHub
parent 3e2e3c9b12
commit c6f997b584

View File

@@ -0,0 +1,16 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyassimp"
version = "6.0.2"
license = "ISC"
authors = [
{ name = "ASSIMP Developers", email = "kim.kulling@assimp.org" },
]
maintainers = [{ name = "Séverin Lemaignan", email = "severin@guakamole.org" }]
description = "Python bindings for the Open Asset Import Library (ASSIMP)"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["numpy"]