-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (60 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
63 lines (60 loc) · 1.58 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "firebench"
version = "0.8.1"
authors = [
{name = "Aurélien Costes", email = "aurelien.costes31@gmail.com"},
]
maintainers = [
{name = "Aurélien Costes", email = "aurelien.costes31@gmail.com"},
]
description = "FireBench is a Python library designed for the systematic benchmarking and inter-comparison of fire models."
dependencies = [
"contourpy < 2.0",
"geopandas < 2.0",
"h5py < 4.0",
"hdf5plugin >= 6.0",
"matplotlib > 3.8",
"numpy < 3.0",
"pint < 1.0",
"pyproj < 4.0",
"pytz > 2025.0",
"rasterio < 2.0",
"reportlab < 5.0",
"SALib < 2.0",
"scipy < 2.0",
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: Apache Software License",
]
[project.optional-dependencies]
dev = [
"bandit",
"black",
"pylint",
"pytest",
"pytest-cov",
"pytest-mock",
"shapely",
]
[tool.hatch.envs.default]
features = ["dev"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
firebench_adapter_wrf_sfire = ["resources/*.json"]