-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 802 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ht-data-parser"
version = "0.1.0"
description = "High-throughput data parsers and analysis tools"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "William Rigaut", email = "william.rigaut@neel.cnrs.fr" }]
dependencies = [
"h5py",
"mammos_entity",
"mammos_units",
"plotly",
"numpy",
"pandas",
"ipykernel",
"openpyxl",
"nbformat>=4.2.0",
"fabio",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/MaMMoS-project/ht-data-parser"
Repository = "https://github.com/MaMMoS-project/ht-data-parser"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]