-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 987 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 987 Bytes
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
[tool.poetry]
name = "NakaMetPy"
version = "2026.1.0"
description = "Meteorological Tools for Calculation and Colormap."
authors = ["muchojp <contact.muchiwo@mail.com>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/muchojp/NakaMetPy"
repository = "https://github.com/muchojp/NakaMetPy"
documentation = "https://muchojp.github.io/NakaMetPy/"
[tool.poetry.dependencies]
python = ">=3.7"
numpy = [
{version = "<=1.21.1", python = "3.6"},
{version = ">=1.21.3,<1.22.0", python = "3.7"},
{version = ">=1.21.3,<1.25.0", python = "3.8"},
{version = ">=1.26.4,<2.1.0", python = "3.9"},
{version = ">=2.1.0", python = ">=3.10"},
]
matplotlib = ">=3.3.0"
pandas = [
{version = "<=1.1.5", python = "<3.9"},
{version = ">=1.0.0", python = ">=3.9"},
]
pillow = [
{version = "<10.0.0", python = "<3.10"},
{version = ">=10.0.0", python = ">=3.10"},
]
[tool.poetry.dev-dependencies]
pytest = ">=6.2.5"