Skip to content

Commit

Permalink
update readme file and requirements (#17) (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
Baizhige authored Sep 27, 2024
1 parent 7bcf2de commit 21a8c3f
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 1 deletion.
1 change: 0 additions & 1 deletion CI/whiteboard.txt

This file was deleted.

Binary file modified docs/requirements.txt
Binary file not shown.
50 changes: 50 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,52 @@
# EEGUnity

## Overview

EEGUnity is a Python package designed for processing and analyzing EEG data efficiently. This guide will walk you through the Usage on Windows, macOS, and Linux.

## Usage in Python Project

### Prerequisites

- Python 3.x
- Git
- See [requirements.txt](docs%2Frequirements.txt)

### Clone the Repository

First, clone the repository using Git:

#### Windows, macOS and Linux:
```bash
git clone https://github.com/Baizhige/EEGUnity/.git
```

### Usage in Python Projects

To use EEGUnity in your Python project, you will need to copy the `eegunity` folder to your project directory:

1. **Copy the `eegunity` folder** from the cloned repository to your Python project's folder:

#### Windows:
- Copy `EEGUnity\eegunity` into your project's directory.

#### macOS and Linux:
- Copy `EEGUnity/eegunity` into your project's directory.

2. Import the package in your Python project like this:

```python
from eegunity.unifieddataset import UnifiedDataset
```

3. Your project structure should resemble the following:
```
my_project/
├── eegunity/
│ └── __init__.py
└── your_script.py
```

# Project Documentation
You can view the project manual through the following link: [Click here to view the manual](https://eegunity.readthedocs.io/en/latest/)

0 comments on commit 21a8c3f

Please sign in to comment.