-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
118 lines (107 loc) · 2.25 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools_scm>=8"]
[project]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering"
]
dependencies = [
# Only mandatory dependencies required by the broker and retrieve-api images
"DateTimeRange",
"python-dateutil",
"jsonschema"
]
description = "CADS data retrieve utilities to be used by adaptors"
dynamic = ["version"]
license = {file = "LICENSE"}
name = "cads-adaptors"
readme = "README.md"
[project.optional-dependencies]
complete = [
# Additional dependencies required by the worker image
"aiohttp",
"boto3",
"cacholote",
"cads-mars-server@git+https://github.com/ecmwf-projects/cads-mars-server.git",
"cdsapi",
"cfgrib>=0.9.14.0",
"cftime",
"dask",
"ecmwflibs",
"earthkit-transforms>=0.3.3",
"fsspec",
"h5netcdf",
"jinja2",
"multiurl>=0.3.1",
"netcdf4",
"numpy",
"pandas",
"pydantic",
"python-dateutil",
"pyyaml",
"requests",
"rooki",
"sqlalchemy",
"tabulate",
"tqdm",
"xarray"
]
tests = [
"pytest",
"pytest-cov",
"pytest-localftpserver"
]
[tool.coverage.run]
branch = true
[tool.mypy]
ignore_missing_imports = true
strict = false
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"cdsapi",
"multiurl"
]
[tool.ruff]
# Same as Black.
indent-width = 4
line-length = 88
[tool.ruff.lint]
ignore = [
# pydocstyle: Missing Docstrings
"D1",
# pydocstyle: 1 blank line required between summary line and description
"D205",
# pydocstyle: First line should be in imperative mood; try rephrasing
"D401"
]
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# isort
"I",
# pydocstyle
"D"
]
[tool.ruff.lint.pycodestyle]
max-line-length = 110
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.setuptools]
packages = ["cads_adaptors"]
[tool.setuptools_scm]
write_to = "cads_adaptors/version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''