-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 856 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 856 Bytes
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dispersive-xas"
version = "0.3.0"
description = "Dispersive X-ray absorption spectroscopy data loading, ROI, calibration, and batch analysis tools."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"h5py>=3.8",
"numpy>=1.23",
"scipy>=1.9",
"scikit-image>=0.20",
]
[project.optional-dependencies]
notebook = [
"ipython",
"ipywidgets",
"plotly",
]
dev = [
"build",
"pytest",
]
[project.urls]
Repository = "https://github.com/Cathyhjj/Dispersive_XAS"
[tool.setuptools]
packages = [
"Dispersive_XAS",
"Dispersive_XAS.batch",
"Dispersive_XAS.core",
"Dispersive_XAS.core.data_io",
"Dispersive_XAS.web",
]
package-dir = { "Dispersive_XAS" = "." }
include-package-data = true