forked from UMR-CNRM/EPyGrAM
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
117 lines (105 loc) · 2.7 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
[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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Operating System :: Unix',
]
requires-python = ">=3.6"
dependencies=[
"footprints",
"bronx",
"numpy",
"cartopy",
"matplotlib",
"eccodes < 2.0.0", # incompatibility btw the new eccodes-2.37.0 and FA, for now
"netCDF4",
"h5py",
"pyproj",
"six",
"pyyaml" , # issue with bronx !!
"ctypesForFortran < 2.0.0", # temporary, until complete externalisation of arpifs4py
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "epygram.__version__"}
[project.optional-dependencies]
docs = [
"sphinx",
]
graphics = [
"vtk",
"contourpy",
]
features=[
"taylorism",
"pyresample",
"scipy",
"web.py"
]
format=[
"h5py",
"pillow"
]
vortex = [
"vortex"
]
all = [
"taylorism",
"footprints",
"bronx",
"numpy",
"cartopy",
"matplotlib",
"eccodes",
"vtk",
"vortex",
"pillow",
"contourpy",
"h5py",
"netCDF4",
"pyproj",
"pyresample",
"scipy",
"six",
"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"
]