-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (57 loc) · 2.13 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
[build-system]
requires = ['setuptools>=42']
build-backend = 'setuptools.build_meta'
[project]
name = "PySSPFM"
version = "2024.11"
authors = [{ name = "Hugo Valloire, Patrick Quemere", email = "hugovalloire@gmail.com" }]
description = "PySSPFM: A specialized tool for Switching Spectroscopy Piezoresponse Force Microscopy (SSPFM) data processing"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["PySSPFM", "SS-PFM", "C-KPFM", "switching-spectroscopy", "PFM", "AFM",
"piezoelectric", "ferroelectric", "image", "hysteresis"," nano-loop",
"piezoresponse", "bruker", "datacube", "spm", "python", "python-library",
"data-processing", "machine-learning", "k-means", "cross-correlation"]
license = { text = "GPL v3" }
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'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",
"pandas",
"openpyxl",
"matplotlib",
"Pillow",
"scipy",
"lmfit",
"scikit-learn",
"nanoscope",
"pywin32; platform_system == 'Windows'",
]
[project.scripts]
PySSPFM = "PySSPFM.gui.main:main"
[project.entry-points.console_scripts]
post_install = "post_install:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["PySSPFM*"]
namespaces = false
[tool.pytest.ini_options]
testpaths = ["tests"]
[project.urls]
Homepage = "https://github.com/CEA-MetroCarac/PySSPFM"
Documentation = "https://github.com/CEA-MetroCarac/PySSPFM/tree/main/doc"
[tool.build]
include = ["PySSPFM/*json", "PySSPFM/*/*json", "PySSPFM/*toml", "PySSPFM/*/*toml", "PySSPFM/*/*png", "setup.py"]