-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (76 loc) · 2.18 KB
/
pyproject.toml
File metadata and controls
85 lines (76 loc) · 2.18 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyTEMlib"
dynamic = ["version"]
description = "pyTEM: TEM Data Quantification library through a model-based approach"
readme = "README.rst"
license = "MIT"
authors = [
{name = "Gerd Duscher", email = "gduscher@utk.edu"}
]
keywords = [
"imaging", "spectra", "transmission", "electron", "microscopy",
"scientific", "scanning", "eels", "visualization", "processing",
"storage", "hdf5", "diffraction"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Information Analysis"
]
requires-python = ">=3.9"
dependencies = [
"scipy",
"numpy",
"pillow",
"ase",
"tqdm",
"plotly",
"pandas",
"requests",
"lxml",
"ipympl",
"spglib",
"simpleitk",
"scikit-image",
"scikit-learn",
"pyNSID>=0.0.7",
"sidpy>=0.12.7",
"SciFiReaders>=0.12.4",
"xraylib",
]
[project.urls]
Homepage = "https://pycroscopy.github.io/pyTEMlib/about.html"
Repository = "https://github.com/pycroscopy/pyTEMlib"
Documentation = "https://pycroscopy.github.io/pyTEMlib/"
[project.scripts]
pyTEMlib = "pyTEMlib:main"
[project.optional-dependencies]
test = [
"pytest",
"pytest-runner"
]
[tool.setuptools]
platforms = ["Linux", "Mac OSX", "Windows 11/10"]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["*.tests", "*.tests.*", "tests.*", "tests", "build"]
[tool.setuptools.package-data]
pyTEMlib = ["data/*.json", "example_data/*"]
[tool.setuptools.dynamic]
version = {attr = "pyTEMlib.version.__version__"}
[tool.pytest.ini_options]
testpaths = ["tests", "docs"]