LimeDriverBindings/pyproject.toml
Kumi 67aaf961c6
Updated limedriver subproject and Python
dependencies

Upgraded the limedriver subproject to bring in latest enhancements and
fixes. Added 'h5py' and 'matplotlib' to the list of Python project
dependencies, ensuring the availability of necessary libraries for data
handling and plotting functionalities within our project.
2024-02-09 12:41:57 +01:00

31 lines
631 B
TOML

[project]
name = "limedriver"
version = "0.1.0"
description = "Python bindings for limedriver"
authors = [{name = "Kumi", email = "limedriver@kumi.email"}]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
]
dependencies = [
"h5py",
"matplotlib",
]
[build-system]
requires = [
"setuptools",
"wheel",
"Cython",
"h5py",
"numpy",
'matplotlib',
]
build-backend = "setuptools.build_meta"