forked from UMEP-dev/SUEWS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (55 loc) · 2.22 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
[build-system]
requires = [
"wheel",
"pytest",
"f90wrap==0.2.15",
"numpy>=2.0",
"meson-python>=0.12.0",
]
build-backend = 'mesonpy'
[project]
name = "supy"
description = "The SUEWS model that speaks Python."
authors = [
{ name = "Dr Ting Sun", email = "[email protected]" },
{ name = "Dr Hamidreza Omidvar", email = "[email protected]" },
{ name = "Prof Sue Grimmond", email = "[email protected]" },
]
dynamic = ["version"]
license = { text = "GPL-V3.0" }
dependencies = [
"pandas",
"matplotlib",
"chardet",
"scipy",
"f90wrap==0.2.15", # f90wrap is required for f2py-based supy driver
"dask", # needs dask for parallel tasks
"f90nml", # utility for namelist files
"seaborn", # stat plotting
"atmosp", # my own `atmosp` module forked from `atmos-python`
"cdsapi", # ERA5 data
"xarray", # utility for high-dimensional datasets
"multiprocess", # a better multiprocessing library
"click", # cmd tool
"lmfit", # optimiser
"numdifftools", # required by `lmfit` for uncertainty estimation
"pvlib", # TMY-related solar radiation calculations
"platypus-opt==1.0.4", # a multi-objective optimiser
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
suews-run = "supy.cmd.SUEWS:SUEWS"
suews-convert = "supy.cmd.table_converter:convert_table_cmd"