Metadata-Version: 2.4
Name: minexpy
Version: 0.1.0
Summary: A practical toolkit for geoscience researchers and students
Author: Yasin Ghasemi
License: MIT
Project-URL: Homepage, https://github.com/SupernovifieD/MinexPy
Project-URL: Documentation, https://SupernovifieD.github.io/MinexPy/
Project-URL: Repository, https://github.com/SupernovifieD/MinexPy
Project-URL: Bug Tracker, https://github.com/SupernovifieD/MinexPy/issues
Keywords: geoscience,geochemistry,geology,statistics,mining,exploration
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.24.0
Requires-Dist: pandas>=2.0.0
Requires-Dist: scipy>=1.10.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Provides-Extra: docs
Requires-Dist: mkdocs>=1.5.0; extra == "docs"
Requires-Dist: mkdocs-material>=9.0.0; extra == "docs"
Requires-Dist: mkdocstrings[python]>=0.24.0; extra == "docs"
Dynamic: license-file

# MinexPy

MinexPy is a practical toolkit for geoscience researchers and students who are learning how to solve real geoscientific problems with Python—or who want a deeper, more structured understanding of which Python tools fit which geoscience tasks.

Even though modern AI tools can help you prototype quickly, it’s still hard for beginners to answer questions like:

- Which library should I use for this exact problem?
- What’s the “standard” workflow in geoscience when using Python?
- How do I discover reliable tools without getting lost in hundreds of packages?

MinexPy aims to reduce that confusion by providing curated, beginner-friendly building blocks and sensible combinations of widely-used libraries, so you can focus more on the science and less on setup and guesswork.

---

## Installation

Install with pip:

```bash
pip install minexpy
```

---

## How to use

Like most Python packages, you install it and import what you need Documentation and examples will expand over time as modules are added.

---

## Roadmap / TODO

Want to contribute? Here are some high-impact areas to work on:

- Mapping module for geological, geochemical, and geophysical data

- Interpolation methods commonly used in geosciences (e.g., minimum curvature, triangulation, and others)

- AOI extraction from large satellite imagery (selecting/cropping a region of interest from big scenes)

---

## Contributing

Contributions are welcome—especially examples, notebooks/markdown tutorials, and new modules that follow the project’s goals:

- beginner-friendly

- practical workflows

- clear and detailed documentation using Google's docstrings guidelines
