File: pyproject.toml

package info (click to toggle)
python-agilent 0.4.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 988 kB
  • sloc: python: 849; makefile: 4
file content (31 lines) | stat: -rw-r--r-- 835 bytes parent folder | download
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__"}