-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 915 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 915 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "TCFile"
version = "2024.11.0"
description = "Python package for handling TCF data. It works with Tomcube data"
readme = "README.md"
requires-python = ">=3.11,<4"
license = {file = "LICENSE"}
authors = [{name = "Dohyeon Lee", email = "dleh428@kaist.ac.kr"}]
maintainers = [{name = "Dohyeon Lee", email = "dleh428@kaist.ac.kr"}]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
]
dependencies = [
"numpy>=1.18.5,<3",
"h5py>=3.2.0,<4",
"pillow>=9.5.0",
"hdf5plugin>=4.4,<5",
"dask",
"zarr>=3,<4",
]
[project.urls]
repository = "https://github.com/ehgus/TCFile"
[tool.flit.sdist]
include = ["TCFile/"]
[dependency-groups]
dev = [
"pytest>=8.4.2",
]