-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
57 lines (53 loc) · 1.74 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
[project]
name = "cyeva"
description = "A package to evaluate weather forecast correction"
readme = "README.md"
requires-python = ">=3.10, <3.13" # Python 3.13 is not supported yet. See https://github.com/hgrecco/pint/issues/2065
dependencies = [
"numpy>=2.1.2",
"pandas>=2.2.3",
"pint==0.24.3", # lock pint version to avoid breaking changes
"scipy>=1.14.1",
]
maintainers = [
{ name = "caiyunapp", email = "[email protected]" },
{ name = "ringsaturn", email = "[email protected]" },
]
authors = [
{ name = "caiyunapp", email = "[email protected]" },
{ name = "Clarmy", email = "[email protected]" },
{ name = "ringsaturn", email = "[email protected]" },
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Framework :: Sphinx",
]
keywords = ["atmospheric-science", "mathmatics"]
dynamic = ["version"]
[project.urls]
Documentation = "https://caiyunapp.github.io/cyeva"
Issues = "https://github.com/caiyunapp/cyeva/issues"
"Source Code" = "https://github.com/caiyunapp/cyeva"
[dependency-groups]
dev = [
"pytest>=8.3.3",
"ruff>=0.7.1",
"pytest-cov>=5.0.0",
"pytest-benchmark>=4.0.0",
"pytest-memray>=1.7.0; sys_platform != 'win32'",
"pytest-codspeed>=2.2.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "cyeva/__init__.py"