-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (63 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
73 lines (63 loc) · 1.92 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
[build-system]
requires = ['setuptools>=42']
build-backend = 'setuptools.build_meta'
[project]
name = "pystack3d"
dynamic = ["version"]
authors = [{ name = "Patrick Quéméré", email = "patrick.quemere@cea.fr" }]
description = "Pystack3D: A Python package for fast image stack correction"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["PyStack3D", "stack", "images", "FIB-SEM", "processing",
"correction", "cropping", "background removal", "registration",
"intensity rescaling", "destriping", "curtains", "resampling",
"multithreading", "multiprocessing"]
license = { text = "GPL v3" }
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Environment :: Console',
]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"scikit-image",
"statsmodels",
"pystackreg",
"pyvsnr",
"PyWavelets",
"Pillow",
"tifffile",
"tomli",
"tomlkit",
"parse",
"lxml"
]
[project.optional-dependencies]
gui = ["pystack3d-napari"]
[tool.setuptools.dynamic]
version = { attr = "pystack3d.VERSION" }
[tool.setuptools.packages.find]
where = ["."]
include = ["pystack3d*"]
namespaces = false
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"pystack3d" = ["assets/*.toml"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
[project.urls]
Homepage = "https://github.dev/CEA-MetroCarac/pystack3d"
Documentation = "https://cea-metrocarac.github.io/pystack3d/index.html"