Metadata-Version: 2.4
Name: minfx
Version: 0.2.0
Summary: A minimal Python package for the minfx project
Home-page: https://github.com/minfx-ai/minfx
Author: Minfx Team
Author-email: Minfx Team <team@minfx.ai>
Maintainer-email: Minfx Team <team@minfx.ai>
License: MIT
Project-URL: Homepage, https://github.com/minfx-ai/minfx
Project-URL: Repository, https://github.com/minfx-ai/minfx
Project-URL: Bug Reports, https://github.com/minfx-ai/minfx/issues
Keywords: minfx
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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: neptune
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0; extra == "dev"
Requires-Dist: black>=21.0; extra == "dev"
Requires-Dist: flake8>=3.8; extra == "dev"
Requires-Dist: mypy>=0.800; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Minfx

A minimal Python package for the minfx project.

## Installation

```bash
pip install minfx
```

## Development Installation

```bash
git clone https://github.com/minfx-ai/minfx.git
pip install -e .
```

For development with all dependencies:

```bash
pip install -e ".[dev]"
```

## Usage

```python
import minfx
print(f"Minfx version: {minfx.__version__}")
```

## Development

### Running Tests

```bash
pytest
```

### Code Formatting

```bash
black .
```

### Type Checking

```bash
mypy .
```

### Linting

```bash
flake8 .
```

## Building for Distribution

```bash
python -m build
```
