-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c21dc72
commit 4dc9694
Showing
1 changed file
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,22 @@ name = "cyeva" | |
version = "0.2.0" | ||
description = "A package to evaluate weather forecast correction" | ||
readme = "README.md" | ||
# Python 3.13 is not supported yet. See https://github.com/hgrecco/pint/issues/2065 | ||
requires-python = ">=3.10, <3.13" | ||
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", | ||
"scipy>=1.14.1", | ||
] | ||
authors = [{ name = "caiyunapp", email = "[email protected]" }] | ||
maintainers = [{ name = "ringsaturn", email = "[email protected]" }] | ||
maintainers = [ | ||
{ name = "caiyunapp", email = "[email protected]" }, | ||
{ name = "ringsaturn", email = "[email protected]" }, | ||
] | ||
auhtors = [ | ||
{ name = "caiyunapp", email = "[email protected]" }, | ||
{ name = "Clarmy", email = "[email protected]" }, | ||
{ name = "ringsaturn", email = "[email protected]" }, | ||
] | ||
license = { file = "LICENSE" } | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
|
@@ -26,6 +32,12 @@ classifiers = [ | |
"Operating System :: MacOS", | ||
"Framework :: Sphinx", | ||
] | ||
keywords = ["atmospheric-science", "mathmatics"] | ||
|
||
[project.urls] | ||
Documentation = "https://caiyunapp.github.io/cyeva" | ||
Issues = "https://github.com/caiyunapp/cyeva/issues" | ||
"Source Code" = "https://github.com/caiyunapp/cyeva" | ||
|
||
[tool.uv] | ||
dev-dependencies = [ | ||
|