-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (47 loc) · 1.32 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
56
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "cemc-plots-kit"
authors = [
{name="Wang Dapeng", email="perillaroc@gmail.com"}
]
description = "Plots tool for CEMC's NWP Opearting systems."
readme = "README.md"
keywords = ["graphic", "cemc", "cedarkit"]
license = { text = "Apache-2.0" }
dynamic = ["version"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
'License :: OSI Approved :: Apache Software License',
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy",
"pandas",
"matplotlib",
"cartopy",
"xarray",
"loguru",
'importlib-metadata; python_version<"3.8"',
"reki>=2024.4.0",
"cedarkit-comp>=2024.4.0",
"cedarkit-maps>=2024.4.0",
"cedar-graph>=2024.10.0",
]
[project.urls]
Homepage = "https://github.com/cemc-oper/cemc-plots-kit"
Repository = "https://github.com/cemc-oper/cemc-plots-kit.git"
[project.optional-dependencies]
test = ["pytest"]
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 = "cemc_plots_kit/_version.py"