forked from AnasysInstruments/anasys-python-tools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
106 lines (89 loc) · 2.12 KB
/
pyproject.toml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = [
"hatchling>=1.8.1",
]
build-backend = "hatchling.build"
[project]
name = "anasyspythontools"
dynamic = [
"version",
]
description = "A suite of Python tools for use with Analysis Studio AFM-IR files."
readme = "README.rst"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "Georg Ramer", email = "georg.ramer@tuwien.ac.at" },
{ name = "Wouter Duverger", email = "wouter.duverger@kuleuven.be" },
{ name = "Cody Schindler", email = "cschindler@anasysinstruments.com" },
]
keywords = [
".axd",
".axz",
"AFM",
"Anasys",
"Instruments",
"atomic",
"axd",
"axz",
"force",
"hyperspectral",
"infrared",
"microscope",
"AFM-IR",
"microscopy",
"s-snom",
"spectra",
"spectroscopy",
"spectrum",
"ssnom",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = ["scipy>=1.9.1",
"matplotlib>=3.5.3",
"matplotlib-scalebar>=0.8.1",
"numpy>=1.22",
"xarray>=2022.6.0",
"IPython>=7.0"]
[project.urls]
Homepage = "https://github.com/GeorgRamer/anasys-python-tools"
[tool.hatch.version]
path = "anasyspythontools/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"anasyspythontools/*.py",
]
[[tool.hatch.envs.hatch-test.matrix]]
python = ["3.12", "3.11", "3.8"]
[tool.hatch.build.targets.wheel]
packages = ["anasyspythontools"]
[tool.hatch.envs.test]
dependencies = ["coverage[toml]",
"pytest",
"pytest-cov"]
[tool.hatch.envs.style]
skip-install = true
dependencies = [
"flake8",
"black",
"isort"
]
[tool.hatch.envs.style.scripts]
syntax = "flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics"
check = [
"flake8 .",
"black --check --diff .",
"isort --check-only --diff .",
]
fmt = [
"isort .",
"black .",
"check",
]