-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (48 loc) · 1.71 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="PySSPFM",
version='2024.03',
license='GPL v3',
include_package_data=True,
zip_safe=False,
python_requires='>=3.7',
install_requires=[
"numpy",
"pandas",
"openpyxl",
"matplotlib",
"Pillow",
"scipy",
"lmfit",
"scikit-learn",
"nanoscope",
],
packages=find_packages(where='.', include=['PySSPFM*']),
description="PySSPFM: A specialized tool for Switching Spectroscopy "
"Piezoresponse Force Microscopy (SSPFM) data processing",
url="https://github.com/CEA-MetroCarac/PySSPFM",
author_email="hugovalloire@gmail.com",
author="Hugo Valloire, Patrick Quemere",
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",
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',
],
entry_points={
'gui_scripts': [
'PySSPFM = PySSPFM.gui.main:main',
]
}
)