-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (50 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
60 lines (50 loc) · 1.38 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
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "reki"
authors = [
{name="Wang Dapeng", email="perillaroc@gmail.com"}
]
description = "A data preparation tool for CEMC/CMA."
readme = "README.md"
keywords = ["data", "grib2", "cemc"]
license = {file = "LICENSE"}
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
'License :: OSI Approved :: Apache Software License',
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pyyaml",
"jinja2",
"numpy",
"pandas",
"xarray",
"click",
"tqdm",
"cfgrib",
"eccodes",
'importlib-metadata; python_version<"3.8"',
]
[project.urls]
Homepage = "https://github.com/cemc-oper/reki"
Documentation = "https://reki.readthedocs.io"
Repository = "https://github.com/cemc-oper/reki.git"
[project.optional-dependencies]
godas = ["protobuf", "requests"]
test = ["pytest", "requests", "cedarkit-test-data"]
cov = ["pytest-cov", "codecov"]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*", "docs", "example"]
namespaces = false
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
version_file = "reki/_version.py"
[tool.uv.sources]
cedarkit-test-data = { path = "../cedarkit-test-data", editable = true }