-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.5 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "esmftk"
dynamic = ["version", "readme"]
authors = [{name = "ESMF Core Team", email = "esmf_support@ucar.edu"}]
maintainers = [ { name = "ESMF Core Team", email = "esmf_support@ucar.edu" } ]
description = "ESMF TestKit is a Python based testing framework for ESMF"
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
keywords = [
"ESMF",
"Earth System Modeling Framework",
"TestKit",
"testing framework",
]
requires-python = ">=3.9"
dependencies = [
"PyYAML",
]
[project.urls]
Homepage = "https://github.com/esmf-org/esmf-testkit"
Issues = "https://earthsystemmodeling.org/support/"
[tool.setuptools.packages.find]
where = ["src"]
namespaces = true
[tool.setuptools.package-data]
"esmftk.wrapper" = ["*"]
"esmftk.tests" = ["*"]
"esmftk.tests.cmake" = ["*"]
"esmftk.tests.esmf_initialize" = ["*"]
"esmftk.tests.esmf_reconcile" = ["*"]
"esmftk.tests.nuopc_basic" = ["*"]
"esmftk.tests.esmx_basic" = ["*"]
"esmftk.tests.esmx_basic.esmx_comp2" = ["*"]
"esmftk.tests.esmx_basic.esmx_comp2.cmake" = ["*"]
"esmftk.tests.esmx_basic.esmx_comp1" = ["*"]
"esmftk.tests.esmx_basic.esmx_comp1.cmake" = ["*"]
"esmftk.templates" = ["*"]
"esmftk.input" = ["*"]
[tool.setuptools.dynamic]
version = {attr = "esmftk.__version__"}
readme = {file = ["README.md"]}