-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.52 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
[build-system]
requires = ["setuptools >= 69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openquake.quaket"
dynamic = ["version"]
description = "QuakeT"
readme = """
Python and OpenQuake-based Toolkit for the checking componentns of hazard
models and simulating component used to build them
Copyright (C) 2025 GEM Foundation
"""
license = { text = "AGPL-3.0-only" }
authors = [
{ name = "GEM Foundation, Électricité de France S.A.", email = "hazard@globalquakemodel.org" },
]
maintainers = [
{ name = "GEM Foundation, Électricité de France S.A.", email = "hazard@globalquakemodel.org" },
]
keywords = [
"hazard",
"seismic",
"simulation",
"check",
"PSHA",
]
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 = [
]
[project.urls]
Homepage = "https://github.com/GEMScienceTools/quaket"
Repository = "https://github.com/GEMScienceTools/quaket"
Documentation = "https://gemsciencetools.github.io/quakeT/"
[tool.setuptools.packages.find]
where = ["."]
include = ["openquake*"]
[tool.setuptools.exclude-package-data]
"*" = [
"tests",
"tests.*"
]
[tool.setuptools.dynamic]
version = {attr = "openquake.quaket.__version__"}