Metadata-Version: 2.1
Name: fis-data
Version: 0.1.0
Summary: A package for rearranging FIS data
Home-page: https://github.com/NEbrahimi/fis_data
Author: Naz Ebrahimi
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
License-File: LICENSE
Requires-Dist: pandas >=1.0.0


# FIS Data Rearranger

## Description
`fis_data` is a Python package designed to rearrange data from an Excel sheet in a specific format. It allows users to extract and reorganize data from a sheet named "Normalised" and export the rearranged data to a new Excel file. This package is particularly useful for [specific use case or domain].

## Installation
To install `fis_data`, you can use pip:
```bash
pip install fis_data
```
Ensure that you have `Python 3.6` or later installed.

## Usage
Once installed, you can use the `rearrange_fis_data` command-line tool as follows:
```bash
rearrange_fis_data <input_filepath> <output_filepath> [--sheet_name SHEET_NAME]
```
- `input_filepath`: Path to the input Excel file.
- `output_filepath`: Path to save the rearranged Excel file.
- `--sheet_name`: (Optional) Name of the sheet to be processed. Defaults to "Normalised".

### Example
```bash
rearrange_fis_data input_data.xlsx rearranged_data.xlsx
```

## Development
To contribute to `fis_data`, clone the repository:
```bash
git clone https://github.com/NEbrahimi/fis_data.git
```
Install the development dependencies:
```bash
pip install -r requirements.txt
```
Make your improvements and submit a pull request.

## License
This project is licensed under the MIT License. See the `LICENSE` file for more details.

