-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (57 loc) · 1.67 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
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "earthkit-time"
version = "0.1.6"
requires-python = ">= 3.8"
description = "Date and time manipulation routines for the use of weather data"
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = ["pyyaml"]
[project.optional-dependencies]
docs = [
"myst-parser",
"Sphinx",
"sphinx-rtd-theme",
]
test = [
"pytest >= 8.1",
]
[project.scripts]
earthkit-climdates = "earthkit.time.cli.climatology:main"
earthkit-dateseq = "earthkit.time.cli.sequence:main"
earthkit-date = "earthkit.time.cli.date:main"
[project.urls]
Homepage = "https://github.com/ecmwf/earthkit-time/"
Documentation = "https://earthkit-time.readthedocs.io"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "8.1"
addopts = "--doctest-modules"
testpaths = [
"src",
"tests",
]
consider_namespace_packages = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"earthkit.time.data" = ["*/*.yaml"]