2024-02-07 17:18:44 +00:00
|
|
|
[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",
|
|
|
|
]
|
2024-02-09 11:41:57 +00:00
|
|
|
dependencies = [
|
|
|
|
"h5py",
|
|
|
|
"matplotlib",
|
|
|
|
]
|
2024-02-07 17:18:44 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = [
|
2024-02-07 17:20:36 +00:00
|
|
|
"setuptools",
|
2024-02-07 17:18:44 +00:00
|
|
|
"wheel",
|
2024-02-08 20:57:59 +00:00
|
|
|
"Cython",
|
|
|
|
"h5py",
|
|
|
|
"numpy",
|
|
|
|
'matplotlib',
|
2024-02-08 08:52:51 +00:00
|
|
|
]
|
|
|
|
|
2024-02-09 11:41:57 +00:00
|
|
|
build-backend = "setuptools.build_meta"
|