-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.19 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
# SPDX-FileCopyrightText: 2023 Sunip K. Mukherjee
#
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = [
"meson-python",
"numpy >= 1.14.5" # in order to get include dirs for meson without --no-build-isolation on pip install. isolation = false does not work.
]
build-backend = "mesonpy"
[project]
name = "glowpython2"
version = "0.0.2"
requires-python = ">=3.9"
authors = [
{name = "Sunip K. Mukherjee", email = "sunipkmukherjee@gmail.com"},
]
description = "Python bindings for NCAR GLOW model"
keywords = [
"thermosphere",
"ionosphere"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Fortran",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
license = {file = "LICENSE"}
readme = "README.md"
dependencies = ['meson', 'ninja', 'numpy >= 1.14.5', 'xarray >= 0.15', 'geomagdata >= 1.6.1']
[project.urls]
homepage = "https://github.com/sunipkm/glowpython"
[project.scripts]
Glow2Maxwellian = "glowpython2.examples:Maxwellian"
Glow2NoPrecip = "glowpython2.examples:NoPrecipitation"