forked from wking/igor
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.33 KB
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
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "igor2"
authors = [
# in alphabetical order
{name = "Aurelien Jaquier"},
{name = "Kimoon Higashihira Han"},
{name = "Paul Kienzle"},
{name = "Paul Müller"},
{name = "W. Trevor King"},
{name = "Zbigniew Jędrzejewski-Szmek"},
]
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]
igorbinarywave = 'igor2.cli.igorbinarywave:main'
igorpackedexperiment = 'igor2.cli.igorpackedexperiment:main'
[tool.setuptools]
packages = ["igor2"]
[tool.setuptools_scm]
write_to = "igor2/_version.py"
version_scheme = "post-release"
[project.urls]
Issues = "https://github.com/AFM-analysis/igor2/issues"
Source = "https://github.com/AFM-analysis/igor2"