-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.22 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.22 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentic-hdf5"
version = "1.0.0"
description = "HDF5 tools and semantic metadata for agentic workflows"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Matthew Larson" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
"h5py",
"numpy",
"matplotlib",
"xarray",
"tqdm",
"mcp",
"fastembed",
"netCDF4",
"compliance-checker",
]
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
Homepage = "https://github.com/mattjala/agentic-hdf5"
Repository = "https://github.com/mattjala/agentic-hdf5"
Issues = "https://github.com/mattjala/agentic-hdf5/issues"
[tool.setuptools.packages.find]
include = ["tools*", "nexus*"]
[tool.setuptools.package-data]
tools = ["*.json"]
[project.scripts]
hdf5-mcp-server = "tools.mcp_server:main"
nexus = "nexus.cli:main"