-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.07 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cfizer"
version = "1.0.5"
requires-python = ">=3.9"
dependencies = [
"netcdf4>=1.5.7",
"xarray==2022.3.0",
"pyyaml==6.0",
"cfunits>=3.3.4",
"numpy>=1.22.3",
"dask",
"openpyxl>=3.0"
]
authors = [
{ name="Cameron Wilson", email="[email protected]" }
]
maintainers = [
{ name="Steven Boeing", email="[email protected]" },
{ name="Anne Barber", email="[email protected]"}
]
description = "A tool to convert NetCDF output files from MONC into CF-compliant versions."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: BSD-3-Clause license ",
"Operating System :: OS Independent",
]
license = {file = "LICENSE"}
[tool.setuptools.packages.find]
exclude = ["test*"]
[tool.setuptools.package-data]
cfizer = ["vocabulary.yml", "config.yml"]
[project.urls]
"Homepage" = "https://github.com/cemac/CFizer"
[project.scripts]
cfize = "cfizer.cfize:cfize"
xlvocab = "cfizer.utilities.vocab_from_xlsx:xlsx_to_yml"