-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
125 lines (117 loc) · 3.54 KB
/
pyproject.toml
File metadata and controls
125 lines (117 loc) · 3.54 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "epygram"
dynamic = ["version"]
description = "EPyGrAM : Enhanced Python for Graphics and Analysis of Meteorological fields"
authors = [
{ name = "Alexandre MARY", email = "alexandre.mary@meteo.fr" },
{ name = "Sébastien Riette", email = "sebastien.riette@meteo.fr"}
]
maintainers = [
{ name = "Alexandre MARY", email = "alexandre.mary@meteo.fr" },
{ name = "Sébastien Riette", email = "sebastien.riette@meteo.fr"}
]
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["NWP", "meteorology", "GRIB", "FA"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Operating System :: Unix',
]
requires-python = ">=3.10"
dependencies = [
"bronx",
"eccodes==2.44.0", # ! consistency with falfilfa4py !
"ectrans4py==1.6.0",
"falfilfa4py==1.2.1", # ! consistency with eccodes !
"footprints",
"netCDF4==1.7.2", #FIXME: issue with newer versions not being properly installed on some (old) platforms
"numpy",
"pyproj",
"pytest",
"pyyaml" , # to be removed when bronx dependency is fixed
"taylorism",
]
[project.scripts]
epygram = "epygram.cli:main"
epy_cartoplot = "epygram.cli.cartoplot:main"
epy_convert = "epygram.cli.convert:main"
epy_ddhlfa_plot = "epygram.cli.ddhlfa_plot:main"
epy_delfield = "epygram.cli.delfield:main"
epy_domain_maker = "epygram.cli.domain_maker:main"
epy_fa_sp2gp = "epygram.cli.fa_sp2gp:main"
epy_histogram = "epygram.cli.histogram:main"
epy_movefield = "epygram.cli.movefield:main"
epy_plot3d = "epygram.cli.plot3d:main"
epy_point = "epygram.cli.point:main"
epy_profile = "epygram.cli.profile:main"
epy_run_epyweb = "epygram.cli.run_epyweb:main"
epy_section = "epygram.cli.section:main"
epy_spectrum = "epygram.cli.spectrum:main"
epy_stats = "epygram.cli.stats:main"
epy_what = "epygram.cli.what:main"
epy_what_the_grib = "epygram.cli.what_the_grib:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "epygram.__version__"}
[project.optional-dependencies]
docs = [
"sphinx",
"jupyter", # for the gallery
"nbsphinx", # for the gallery
]
graphics = [
"cartopy==0.23.0", # versions older than 0.21.0 not compatible with python 3.10; more recent versions to be tested
"contourpy",
"matplotlib",
"vtk",
]
features = [
"pyresample",
"scipy",
"taylorism",
"vgrid",
"web.py",
]
extra_formats = [
"h5py",
"pillow >= 5.4.1"
]
all = [
"cartopy==0.23.0", # versions older than 0.21.0 not compatible with python 3.10; more recent versions to be tested
"contourpy",
"h5py",
"jupyter",
"matplotlib",
"nbsphinx",
"pillow >= 5.4.1",
"pyresample",
"scipy",
"sphinx",
"vgrid",
"vtk",
"web.py",
]
[project.urls]
documentation = "https://umr-cnrm.github.io/EPyGrAM-doc"
source = "https://github.com/UMR-CNRM/EPyGrAM.git"
download = "https://github.com/UMR-CNRM/EPyGrAM/releases"
tracker = "https://github.com/UMR-CNRM/EPyGrAM/issues"
[tool.pytest.ini_options]
pythonpath = [
"src",
]
testpaths = [
"tests"
]