-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (88 loc) · 2.74 KB
/
pyproject.toml
File metadata and controls
96 lines (88 loc) · 2.74 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
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
[build-system]
requires = [
"meson>=1.0.0",
"meson-python>=0.13.0",
"ninja",
"numpy>=2.0.0",
"DiscoverVersion>=0.3.2"
]
build-backend = "mesonpy"
[project]
name = "SurfaceTopography"
description = "Read and analyze surface topographies"
readme = "README.md"
license = { file = "LICENSE.md" }
authors = [
{ name = "Lars Pastewka", email = "lars.pastewka@imtek.uni-freiburg.de" },
{ name = "Kai Haase", email = "k.o.haase@googlemail.com" },
{ name = "Johannes Hörmann", email = "johannes.hoermann@imtek.uni-freiburg.de" },
{ name = "Till Junge", email = "till.junge@altermail.ch" },
{ name = "Michael Röttger", email = "info@michael-roettger.de" },
{ name = "Antoine Sanner", email = "antoine.sanner@imtek.uni-freiburg.de" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
keywords = [
# General terms
"surface", "topography", "roughness", "profilometry", "profilometer",
"metrology", "surface-metrology", "AFM", "SPM", "confocal", "interferometer",
"stylus", "contact-mechanics", "tribology",
# Manufacturers / Instruments
"Alicona", "Bruker", "Dektak", "Wyko", "Veeco", "Digital-Instruments",
"Keyence", "Zygo", "MetroPro", "Sensofar", "Olympus", "LEXT",
"Park-Systems", "JPK", "NanoSurf", "Mitutoyo", "SurfTest",
"Agilent", "Molecular-Imaging", "MicroProf", "FRT",
# File formats
"X3P", "ISO-5436", "SUR", "OPD", "OPDx", "VK4", "VK6", "AL3D",
"GWY", "Gwyddion", "WSxM", "NetCDF", "HDF5", "IBW", "Igor",
# Data types
"height-map", "surface-profile", "line-scan", "SRTM"
]
requires-python = ">=3.10.0"
dynamic = ["version"]
dependencies = [
"numpy>=2.0.0",
"scipy>=1.9.0",
"defusedxml",
"h5py",
"igor2",
"matplotlib>=1.0.0",
"muGrid>=0.103.0",
"NuMPI>=0.9.0",
"numpyencoder",
"openpyxl",
"Pillow",
"python-dateutil",
"pyyaml",
"requests",
"tiffile",
"xmltodict",
"olefile",
"pandas",
"pydantic",
"zstandard"
]
[project.optional-dependencies]
test = [
"flake8<8",
"pytest",
"pytest-cov",
"pytest-flake8",
"runtests"
]
[project.urls]
documentation = "https://contactengineering.github.io/SurfaceTopography/"
repository = "https://github.com/ContactEngineering/SurfaceTopography"
changelog = "https://github.com/ContactEngineering/SurfaceTopography/blob/master/SurfaceTopography/ChangeLog.md"
[project.scripts]
show-topography = "SurfaceTopography.CLI.ShowTopography:main"
[tool.meson-python]
# Allow bundling shared libraries on Windows (needed for extension modules)
allow-windows-internal-shared-libs = true
[tool.black]
line-length = 88
target-version = ["py310", "py311", "py312", "py313", "py314"]
[tool.isort]
profile = "black"