Metadata-Version: 2.1
Name: magcopy
Version: 0.0.3.1
Summary: magcopy is a command-line utility that simplifies the copy and move operations of files and directories between terminal windows.
Author-email: Adaías Magdiel <eu@adaiasmagdiel.com>
Project-URL: Homepage, https://github.com/AdaiasMagdiel/magcopy
Project-URL: Documentation, https://github.com/AdaiasMagdiel/magcopy/blob/main/README.md
Project-URL: Repository, https://github.com/AdaiasMagdiel/magcopy
Project-URL: Issues, https://github.com/AdaiasMagdiel/magcopy/issues
Keywords: file management,command-line utility,clipboard,copy and move,terminal interaction
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
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
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# magcopy

`magcopy` is a command-line utility that simplifies the copy and move operations of files and directories between terminal windows. It allows users to copy from one terminal and paste into another with ease. The utility is designed to be used in a terminal environment and maintains its own clipboard for managing copied and moved items.

## Installation

You can install `magcopy` using the following command:

```bash
pip install magcopy
```

## Usage

```bash
magcopy <action> <path/file> [--help]
```

### Actions

- **copy**: Copy a folder or file to the clipboard.
- **move**: Add a folder or file to the clipboard for moving.
- **paste**: Paste a folder or file from the clipboard to the current folder or a specified folder.

### Options

- `--help`: Display the usage message.

### Examples

```bash
magcopy copy /path/to/source/folder
magcopy paste /path/to/destination/folder

magcopy move /path/to/source/file
magcopy paste /path/to/destination/folder
```

## Notes

- This program does not alter the contents of the system's default clipboard. It maintains its own clipboard for managing copied and moved items.

## Error Handling

In case of errors, the utility provides clear error messages to guide the user.

## Testing

To run the tests for `magcopy`, you need to have `pytest` installed. If you don't have it installed, you can install it using the following command:

```bash
pip install pytest
```

Once `pytest` is installed, you can run the tests by executing the following command in the root directory of your project:

```bash
pytest
```

This will discover and run all the test files in your project. Make sure you have the required dependencies and a proper Python environment set up before running the tests.

### Running Specific Tests

If you want to run tests from a specific file or directory, you can provide the file or directory path as an argument to `pytest`. For example:

```bash
pytest tests/test_clipboard.py
```

This command will run only the tests defined in the `test_clipboard.py` file.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Contributing

Contributions to `magcopy` are welcome! If you find a bug, have a feature request, or want to contribute in any other way, feel free to open an issue or submit a pull request. Your help is highly appreciated.

### How to Contribute

1. Fork the repository on GitHub.
2. Clone your forked repository to your local machine:

    ```bash
    git clone https://github.com/your-username/magcopy.git
    ```

3. Create a new branch for your contribution:

    ```bash
    git checkout -b feature/your-feature-name
    ```

4. Make your changes and commit them with a descriptive commit message:

    ```bash
    git commit -m "Add your descriptive message here"
    ```

5. Push your changes to your fork:

    ```bash
    git push origin feature/your-feature-name
    ```

6. Open a pull request on the official `magcopy` repository.

### Reporting Issues

If you encounter any issues or have suggestions, please open an issue on the [GitHub issue tracker](https://github.com/your-username/magcopy/issues). Provide detailed information about the problem you're facing or the enhancement you're proposing.
