-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 1.73 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
62
63
64
65
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sysmic"
version = "8.0.0"
description = "Precision-calibrated Bayesian fractal tomography of seismic catalogs"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "GPL-3.0-only" }
authors = [
{ name = "Facundo Firmenich", email = "f.firmenich@cedesur.org" },
{ name = "Pau Firmenich" },
{ name = "León Firmenich" }
]
keywords = [
"seismology", "fractal dimension", "Bayesian inference",
"Fisher information", "Hi-Net", "tectonic hierarchy",
"Grassberger-Procaccia", "MCMC", "emcee"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy>=1.24.0",
"scipy>=1.10.0",
"pandas>=2.0.0",
"matplotlib>=3.7.0",
"emcee>=3.1.0",
"joblib>=1.2.0",
"requests>=2.28.0",
]
[project.optional-dependencies]
app = ["streamlit>=1.28.0"]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
]
[project.urls]
"Homepage" = "https://github.com/FacundoFirmenich/sysmic"
"Bug Tracker" = "https://github.com/FacundoFirmenich/sysmic/issues"
"JOSS Paper" = "https://joss.theoj.org/papers/placeholder"
"Zenodo" = "https://doi.org/10.5281/zenodo.18480821"
[project.scripts]
sysmic-analyze = "sysmic.core:main"
[tool.setuptools]
packages = ["sysmic"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"