1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agilent-format"
dynamic = ["version"]
authors = [
{ name="Stuart Read", email="stuart.read@lightsource.ca"}
]
description = "File reader for Agilent Resolutions Pro FT-IR images"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/stuart-cls/python-agilent-file-formats"
Issues = "https://github.com/stuart-cls/python-agilent-file-formats/issues"
[tool.setuptools]
packages = ["agilent_format", "agilent_format.tests"]
[tool.setuptools.dynamic]
version = {attr = "agilent_format.agilent.__version__"}
|