-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (46 loc) · 1.29 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
54
55
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "msm_os"
description = "A library to send files to the object store."
requires-python = ">=3.10"
keywords = ["data", "pipeline", "object store", "tookit", "data", "zarr", "pypeline", "noc"]
authors = [{email = "[email protected]"},{name = "Joao Morado"}]
maintainers = [{name = "Joao Morado", email = "[email protected]"}]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research"
]
dependencies = [
"dask[complete]>=2023.3.0",
"netcdf4==1.6.5",
"xarray[io,accel,viz]>=2023.3.0",
"s3fs>=2023.3.0",
"fsspec>=2023.3.0",
"numpy==1.26.4",
"scitools-iris>=3.9.0",
"tenacity>=8.3.0",
"intake",
"intake-xarray"
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
file = "LICENSE.md"
content-type = "text/markdown"
[tool.setuptools.dynamic]
version = {attr = "msm_os.__init__.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
exclude = ["*__pycache__*"]
namespaces = true
[project.optional-dependencies]
test = ["pytest >= 7.2.0"]
[project.urls]
repository = "https://github.com/NOC-OI/msm_os"
[project.scripts]
msm_os = "msm_os.cli.main_cli:msm_os"