-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.22 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[project]
name = "catalog_to_xpublish"
dynamic = ["version", "readme"]
description = "This repository enables one to spin-up a FastAPI/Xpublish server from an Intake or STAC catalog."
authors = [
{name = "Xavier Nogueira", email = "[email protected]"},
]
requires-python = ">=3.11"
keywords = [
'xarray',
'fastapi',
'zarr',
'server-side',
'gridded-data',
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
dependencies = [
'xpublish',
'xarray',
'intake',
'intake-xarray',
'pystac',
'fsspec',
's3fs',
'h5netcdf',
'zarr',
'pydantic',
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["catalog_to_xpublish*"]
[tool.setuptools.dynamic]
version = {attr = "catalog_to_xpublish.__version__"}
readme = {file = "README.md"}