-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.02 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PySeismoSoil"
version = "0.6.3"
description = "A Python library for performing 1D seismic site response analysis"
readme = "README.md"
license = {text = "BSD-3-Clause"}
authors = [
{name = "PySeismoSoil Contributors"}
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.10"
dependencies = [
"matplotlib>=2.0.0",
"numba>=0.38.0",
"numpy>=1.11.0",
"scipy>=1.1.0",
"PyWavelets>=1.3.0",
]
[project.urls]
Homepage = "https://caltech-geoquake.github.io/PySeismoSoil/"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["PySeismoSoil*"]
exclude = ["tests*"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
[tool.cercis]
wrap-line-with-long-string = true
[tool.pydoclint]
style = 'numpy'
exclude = '\.git|.?venv|\.tox'