-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
84 lines (74 loc) · 1.9 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
[build-system]
requires = ["setuptools >= 69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openquake.mbt"
dynamic = ["version"]
description = "Model Building Toolkit"
readme = """
Python and OpenQuake-based Toolkit for the construction of Seismic Source
Models
Copyright (C) 2017-2025 GEM Foundation
"""
license = { text = "AGPL-3.0-only" }
authors = [
{ name = "GEM Foundation", email = "[email protected]" },
]
maintainers = [
{ name = "GEM Foundation", email = "[email protected]" },
]
keywords = [
"hazard",
"seismic",
"hazard seismic",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python ",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10, <3.13"
dependencies = [
"geojson",
"geopandas > 0.10.0",
"pandas >= 2.0.3, <= 2.2.3",
"h3 <= 3.7.7",
"igraph",
"ipykernel >= 4.8.0",
"ipython >= 6.2.0",
"jupyter_client >= 5.0.0",
"nbconvert",
"nbformat",
"nbstripout >= 0.3.0",
"netCDF4 < 1.7.0",
"notebook >= 5.0.0",
"obspy",
"prettytable",
"pylint >= 2.1.1",
"pyproj >= 3.6.1",
"reportlab",
"rtree",
"tables >= 3.7.0",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/GEMScienceTools/oq-mbtk"
Repository = "https://github.com/GEMScienceTools/oq-mbtk"
Documentation = "https://gemsciencetools.github.io/oq-mbtk/index.html"
[project.scripts]
oqm = "openquake.mbi.__main__:oqm"
[tool.setuptools.packages.find]
where = ["."]
include = ["openquake*"]
[tool.setuptools.exclude-package-data]
"*" = [
"tests",
"tests.*"
]
[tool.setuptools.dynamic]
version = {attr = "openquake.mbt.__version__"}