-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
138 lines (130 loc) · 3.61 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
[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 = "[email protected]" },
{ name = "Sébastien Riette", email = "[email protected]"}
]
maintainers = [
{ name = "Alexandre MARY", email = "[email protected]" },
{ name = "Sébastien Riette", email = "[email protected]"}
]
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",
"cartopy==0.23.0", # versions older than 0.21.0 not compatible with python 3.10; more recent versions to be tested
"eccodes==2.38.0", # ! consistency with falfilfa4py !
"ectrans4py",
"falfilfa4py==1.0.3", # ! consistency with eccodes !
"footprints",
"matplotlib",
"netCDF4",
"numpy",
"pyproj",
"pytest",
"pyyaml" , # to be removed when bronx dependency is fixed
]
[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
"pyresample", # used in the gallery
"scipy", # used in the gallery
"vgrid", # used in the gallery
"bokeh", # used in the gallery
]
graphics = [
"vtk",
"contourpy",
]
features = [
"taylorism",
"pyresample",
"scipy",
"vgrid",
"web.py"
]
extra_formats = [
"h5py",
"pillow >= 5.4.1"
]
vortex = [
"vortex"
]
all = [
"bronx",
"bokeh",
"cartopy",
"contourpy",
"eccodes",
"falfilfa4py",
"footprints",
"h5py",
"matplotlib",
"netCDF4",
"numpy",
"pillow >= 5.4.1",
"pyproj",
"pyresample",
"scipy",
"taylorism",
"vgrid",
"vortex",
"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"
]