-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (70 loc) · 2.45 KB
/
setup.py
File metadata and controls
73 lines (70 loc) · 2.45 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
66
67
68
69
70
71
72
73
"""
Sysmic v8.0.0 — Setup
======================
Fractal Tomography and the Fisher Information Barrier of Seismicity.
JGR Solid Earth companion software (Firmenich et al., 2026).
License: GPLv3
"""
from setuptools import setup, find_packages
try:
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
except FileNotFoundError:
long_description = "Sysmic: Fractal Tomography of Seismicity"
setup(
name="sysmic",
version="8.0.0",
author="Facundo Firmenich, Pau Firmenich, León Firmenich",
author_email="f.firmenich@cedesur.org",
description=(
"Precision-calibrated Bayesian fractal tomography of seismic catalogs. "
"Implements the Fisher Information Barrier (σ_c = 2.3 ± 0.4 km) and "
"Grassberger-Procaccia correlation dimension via MCMC (emcee)."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/FacundoFirmenich/sysmic",
project_urls={
"Bug Tracker": "https://github.com/FacundoFirmenich/sysmic/issues",
"Documentation": "https://github.com/FacundoFirmenich/sysmic/tree/main/docs",
"JOSS Paper": "https://joss.theoj.org/papers/placeholder",
"Zenodo Archive": "https://doi.org/10.5281/zenodo.18480821",
},
packages=find_packages(exclude=["tests*", "notebooks*"]),
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",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
install_requires=[
"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",
],
extras_require={
"app": ["streamlit>=1.28.0"],
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
],
},
entry_points={
"console_scripts": [
"sysmic-analyze=sysmic.core:main",
],
},
)