File: pyproject.toml

package info (click to toggle)
igor2 0.5.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 428 kB
  • sloc: python: 2,636; makefile: 3
file content (43 lines) | stat: -rw-r--r-- 1,171 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
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[project]
name = "igor2"
authors = [
    {name = "Paul Kienzle"},
    {name = "W. Trevor King"},
    {name = "Aurelien Jaquier"},
    {name = "Zbigniew Jędrzejewski-Szmek"},
    {name = "Paul Müller"},
]
description = "interface for reading binary IGOR files"
readme = "Readme.rst"
requires-python = ">=3.6, <4"
classifiers = [
    'Intended Audience :: Developers',
    'Intended Audience :: Science/Research',
    'Operating System :: OS Independent',
    'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
    'Programming Language :: Python :: 3',
]
license = {text = "GNU Lesser General Public License v3 or later (LGPLv3+)"}
dependencies = [
  "numpy>=1.19.2",
]
dynamic = ["version"]

[project.optional-dependencies]
CLI = ["matplotlib"]
dev = ["pytest"]

[project.scripts]
igor2binarywave = 'igor2.cli.igorbinarywave:main'
igor2packedexperiment = 'igor2.cli.igorpackedexperiment:main'

[tool.setuptools]
packages = ["igor2"]

[tool.setuptools_scm]
write_to = "igor2/_version.py"
version_scheme = "post-release"