1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
[build-system]
requires = ["setuptools", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "imufusion"
version = "1.2.8"
description = "Fusion Python package"
readme = { text = "See [github](https://github.com/xioTechnologies/Fusion) for documentation and examples.", content-type = "text/markdown" }
authors = [{ name = "x-io Technologies Limited", email = "info@x-io.co.uk" }]
license = { file = "LICENSE.md" }
classifiers = ["Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"] # versions shown by pyversions badge in README
[project.urls]
Repository = "https://github.com/xioTechnologies/Fusion"
[tool.setuptools]
py-modules = [] # fix cibuildwheel error: "Multiple top-level packages discovered in a flat-layout"
|