-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproj.toml
43 lines (36 loc) · 1.13 KB
/
pyproj.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
[build-system]
requires = ["setuptools>=61"] # , "setuptools-scm", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "conus404_raw"
description = "Utilities for creating cloud-optimized datasets from the CONUS404 model output"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [{name = "Parker Norton", email = "[email protected]"}, ]
maintainers = [{name = "Parker Norton", email = "[email protected]"}, ]
keywords = ["CONUS404", "HyTEST"]
classifiers = ["Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3", ]
dependencies = ["dask",
"fsspec",
"numcodecs",
"numpy",
"pandas",
"pyproj",
"rechunker",
"rich",
"xarray",
"zarr", ]
[project.urls]
Repository = "https://github.com/hytest-org/conus404_raw.git"
#[project.scripts]
#convert_params = "pyPRMS.utilities.convert_params:main"
[tool.setuptools]
include-package-data = false
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "conus404_raw.version.__version__"}
[tool.setuptools.packages.find]
include = ["conus404_raw", "conus404_raw.*"]