2024-02-07 17:18:44 +00:00
|
|
|
[project]
|
|
|
|
name = "limedriver"
|
2024-02-17 16:38:18 +00:00
|
|
|
version = "0.4.0"
|
2024-02-07 17:18:44 +00:00
|
|
|
description = "Python bindings for limedriver"
|
|
|
|
authors = [{name = "Kumi", email = "limedriver@kumi.email"}]
|
|
|
|
license = {file = "LICENSE"}
|
|
|
|
readme = "README.md"
|
2024-04-20 08:52:40 +00:00
|
|
|
requires-python = ">=3.10"
|
2024-02-07 17:18:44 +00:00
|
|
|
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",
|
|
|
|
]
|
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",
|
2024-02-08 08:52:51 +00:00
|
|
|
]
|
|
|
|
|
2024-02-09 11:41:57 +00:00
|
|
|
build-backend = "setuptools.build_meta"
|
2024-04-20 08:52:40 +00:00
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
exclude = [
|
|
|
|
"widget.py",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
extend-select = [
|
|
|
|
"UP", # pyupgrade
|
|
|
|
"D", # pydocstyle
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
|
|
"__init__.py" = ["F401"]
|
|
|
|
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
|
|
convention = "google"
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
"Homepage" = "https://nqrduck.cool"
|
|
|
|
"Bug Tracker" = "https://github.com/nqrduck/limedriverbindings/issues"
|
|
|
|
"Source Code" = "https://github.com/nqrduck/limedriverbindings"
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
2024-04-21 10:16:39 +00:00
|
|
|
packages = ["src/limedriver"]
|
|
|
|
|
|
|
|
[tool.cibuildwheel]
|
|
|
|
manylinux-x86_64-image = "quay.io/pypa/manylinux_2_28_x86_64"
|
|
|
|
manylinux-aarch64-image = "quay.io/pypa/manylinux_2_28_aarch64"
|
|
|
|
|
|
|
|
[tool.cibuildwheel.linux]
|
2024-04-21 18:41:34 +00:00
|
|
|
archs = ["aarch64", "x86_64"]
|