-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 1018 Bytes
/
pyproject.toml
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
[project]
name = "mdsh5"
description = "A higher level python package that uses mdsthin to read MDSPlus data and store it in hdf5 formate for easy caching, viewing, distribution, and analysis."
version = "0.0.3"
license = {file = "LICENSE"}
readme = "README.md"
authors = [
{name = "Anchal Gupta", email = "anchal.physics@gmail.com"},
]
requires-python = ">= 3.7"
dependencies = [
"h5py >= 3",
"mdsthin",
"PyYaml",
]
keywords = ["MDSPLus", "HDF5"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
]
[project.scripts]
read_mds = "mdsh5:read_mds_cli"
[project.urls]
"Homepage" = "https://github.com/anchal-physics/mdsh5"
"Bug Reports" = "https://github.com/anchal-physics/mdsh5/issues"
"Source" = "https://github.com/anchal-physics/mdsh5"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"mdsh5/*",
]