Metadata-Version: 2.4
Name: autoclean-eeg2source
Version: 0.1.0
Summary: A minimal Python package example
Author-email: Your Name <your.email@example.com>
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

# autoclean-eeg2source

A minimal Python package example.

## Installation

### Install from source

```bash
pip install .
```

### Install in development mode

```bash
pip install -e .
```

### Install with development dependencies

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

## Building and Publishing

### Build the package

```bash
python -m build
```

### Upload to TestPyPI

First, make sure you have an account on [TestPyPI](https://test.pypi.org/) and have configured your credentials.

```bash
python -m twine upload --repository testpypi dist/*
```

### Install from TestPyPI

```bash
pip install --index-url https://test.pypi.org/simple/ --no-deps autoclean-eeg2source
```

## Usage

```python
import autoclean_eeg2source

print(autoclean_eeg2source.__version__)

# Use the example function
from autoclean_eeg2source.example import hello_world
print(hello_world())
```

## License

MIT License

