-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
51 lines (42 loc) · 1.34 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cloudnet-api-client"
authors = [
{name = "Simo Tukiainen", email = "simo.tukiainen@fmi.fi"},
]
description = "Cloudnet API client"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
dependencies = ["aiohttp", "numpy", "requests", "tqdm"]
dynamic = ["version"]
[project.optional-dependencies]
test = ["mypy", "netCDF4", "pytest", "pytest-asyncio"]
dev = ["pre-commit", "release-version", "types-requests", "types-tqdm"]
[tool.hatch.version]
path = "cloudnet_api_client/version.py"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.release-version]
filename = "cloudnet_api_client/version.py"
pattern = ["__version__ = \"(?P<major>\\d+).(?P<minor>\\d+).(?P<patch>\\d+)\""]
changelog = "CHANGELOG.md"
[tool.ruff.lint]
select = ["B", "D", "E", "F", "I", "PLC", "PLE", "PLW", "SIM", "UP"]
ignore = ["D1"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["PLC0414"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.tomlsort]
trailing_comma_inline_array = true
sort_inline_arrays = true