-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 943 Bytes
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 943 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gmspy"
version = "0.2.0"
description = "Ground Motions Processing for Python"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "Yexiang Yan", email = "yexiang_yan@outlook.com" }
]
license = { text = 'GPL Licence' }
keywords = ["Ground Motions", "Seismic", "Response spectra", "Intensity Measures", "IMs"]
dependencies = [
"matplotlib",
"numpy",
"scipy",
"joblib",
"numba",
"rich",
]
[project.urls]
Homepage = "https://github.com/yexiang1992/gmspy"
[tool.hatch.metadata]
# Customize file inclusion/exclusion if needed
[tool.hatch.version]
# Optional: synchronize the version with a Python file
path = "gmspy/__about__.py"
[project.optional-dependencies]
dev = [
"pytest",
"black",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]"
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]"
]