-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.58 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
52
53
54
55
[project]
name = "metoppy"
version = "0.2.0"
description = "Python package wrapper of MetopDatasets.jl Julia package for reading products from the METOP satellites."
authors = [
{ name = "Simon Kok Lupemba", email = "simon.koklupemba@eumetsat.int" },
{ name = "Francesco Murdaca", email = "francesco.murdaca@eumetsat.int" }
]
maintainers = [
{ name = "Simon Kok Lupemba", email = "simon.koklupemba@eumetsat.int" }
]
dependencies = [
"juliacall>=0.9.14",
"juliapkg>=0.1.22",
]
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
[project.urls]
Homepage = "https://github.com/eumetsat/MetopPy"
"Bug Tracker" = "https://github.com/eumetsat/MetopPy/issues"
Documentation = "https://github.com/eumetsat/MetopPy/blob/main/README.md"
"Source Code" = "https://github.com/eumetsat/MetopPy"
Organization = "https://github.com/eumetsat"
"Release Notes" = "https://github.com/eumetsat/MetopPy/blob/main/CHANGELOG.md"
[project.optional-dependencies]
test = [
"pytest==8.4.1",
"pytest-cov==7.0",
"pytest-html==4.1.1",
"pytest-mock==3.14.1",
"pre-commit==4.3.0",
"numpy==2.3.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = ["metoppy", "README.md", "LICENSE"]
[tool.hatch.build.targets.wheel]
packages = ["metoppy"]