mirror of
https://github.com/nqrduck/LimeDriverBindings.git
synced 2024-11-16 07:21:02 +00:00
Kumi
f48c034011
Updated the project version reflecting new features. Extended the LimeConfig_t struct to include a device string supporting device specification. Introduced a new function `get_device_list` in the Python binding, allowing users to retrieve a list of available devices, enhancing usability. This change improves user interactions with the hardware, making device management more intuitive.
30 lines
631 B
TOML
30 lines
631 B
TOML
[project]
|
|
name = "limedriver"
|
|
version = "0.4.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"
|