-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.62 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
[project]
name = "openap-top"
version = "1.7"
description = "Trajectory OPtimizer based on OpenAP model"
license = { text = "GNU LGPL v3" }
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.9"
dependencies = [
"openap>=2.0",
"casadi>=3.6",
"pyproj>=3.4",
"scikit-learn>=1.4.0",
"cartopy>=0.23.0",
"xarray>=2024.0",
# "cfgrib>=0.9.9",
# "ecmwflibs>=0.6",
]
[project.urls]
homepage = "https://openap.dev"
repository = "https://github.com/junzis/openap-top"
issues = "https://github.com/junzis/openap-top/issues"
[tool.uv]
dev-dependencies = [
"flake8>=5.0.0",
"black>=22.12.0",
"isort>=5.11.4",
"ipykernel>=6.29.5",
# "mypy>=0.991",
# "pytest>=7.2.0",
]
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = [
"E",
"W", # pycodestyle
"F", # pyflakes
"I", # isort
"NPY", # numpy
# "PD", # pandas
"DTZ", # flake8-datetimez
"RUF",
]
[tool.ruff.lint.isort]
known-first-party = ["numpy", "pandas", "pyproj"]
[tool.hatch.metadata]
allow-namespace-packages = true
[tool.hatch.build.targets.wheel]
universal = true
packages = ["openap"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"