Metadata-Version: 2.4
Name: focsphere
Version: 0.0.1
Summary: Tools for calculating and plotting focal-mechanism spheres in seismology
Project-URL: Issues, https://github.com/Staaaaaaaaar/focsphere/issues
Project-URL: Source, https://github.com/Staaaaaaaaar/focsphere
Author: Sam
License-Expression: MIT
License-File: LICENSE
Keywords: beachball,focal mechanism,seismology,stereonet
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >=3.9
Provides-Extra: release
Requires-Dist: build>=1; extra == 'release'
Requires-Dist: twine>=5; extra == 'release'
Description-Content-Type: text/markdown

# FocSphere

`focsphere` 是一个面向地震学的 Python 包，目标是提供震源机制球的计算、投影与绘制工具。

当前 `0.0.1` 是用于在 PyPI 上建立项目的空壳版本，暂不包含震源机制计算或绘图功能。

## 安装

```bash
pip install focsphere
```

安装后可以正常导入包并查看版本：

```python
import focsphere

print(focsphere.__version__)
```

## 构建与发布

```bash
conda env create -f environment-release.yml
conda activate focsphere-release
python -m build
python -m twine check dist/*
python -m twine upload dist/*
```

## 许可证

[MIT](LICENSE)
