-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
84 lines (75 loc) · 2.22 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
# --------------------------- BEGIN NOTES ---------------------------
####### TO INSTALL #######
# pip install . # core only, or
# python espresso_machine/build_package/build.py # with contributions
####### TO TEST #######
# python espresso_machine/build_package/validate.py --pre
# python espresso_machine/build_package/validate.py --post
####### TO FORMAT #######
# black --check src/espresso
# black src/espresso
####### PYLINT #######
# pylint src/espresso
# --------------------------- END NOTES -----------------------------
[build-system]
requires = ["scikit-build-core", "numpy", "cython", "versioningit"]
build-backend = "scikit_build_core.build"
[project]
name = "geo-espresso"
description = "Earth Science PRoblems for the Evaluation of Strategies, Solvers and Optimizers"
authors = [{name = "InLab, Espresso development team"}]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["inversion", "inference", "python package", "geoscience", "geophysics"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: C",
"Programming Language :: Cython",
"Programming Language :: Fortran",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: BSD License",
"License :: Other/Proprietary License"
]
dependencies = [
"numpy>=1.18",
"scipy>=1.0.0",
"matplotlib>=3.1",
"tqdm>=4.0",
"mpmath>=1.2.0",
"cython",
"seislib>=0.6.26",
"pyrf96>=0.1.0",
"pyhk>=0.1.0",
]
dynamic = ["version"]
[tool.scikit-build]
experimental = true
[tool.scikit-build.metadata.version]
provider = "versioning"
provider-path = "espresso_machine"
[tool.black]
line-length = 88
target_version = ['py38']
experimental_string_processing = true
exclude = '''
(
/(
\.git
| \.mypy_cache
| \.vscode
| build
| lib.*
| dist
| _skbuild
)/
| tests
)
'''