Metadata-Version: 2.1
Name: wyntemplate
Version: 0.1.2
Summary: This is a template python library.
Author: Yiqiao Yin
Author-email: eagle0504@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
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-Dist: matplotlib (>=3.9.0,<4.0.0)
Requires-Dist: numpy (>=2.0.0,<3.0.0)
Requires-Dist: pandas (>=2.2.2,<3.0.0)
Description-Content-Type: text/markdown

# NAME_OF_PROJECT: WYNTemplate

## Overview

`WYNTemplate` is a Python library that leverages the power of `numpy`, `pandas`, and `matplotlib` to provide robust data analysis and visualization capabilities. This library aims to simplify complex data processing tasks and help users visualize their data effectively.

## Features

- **Data Manipulation**: Use `pandas` for easy and efficient data manipulation.
- **Numerical Computations**: Leverage `numpy` for high-performance numerical computations.
- **Data Visualization**: Create stunning visualizations with `matplotlib`.

## Installation

To install the `NAME_OF_PROJECT` library, you can use `poetry`. First, ensure you have `poetry` installed. If not, you can install it using `pip`:

```terminal
pip install poetry
```

Then, create a new project and add the necessary dependencies:

```terminal
poetry new NAME_OF_PROJECT
cd WYNTemplate
poetry add numpy pandas matplotlib
```

## Usage

Here is a simple example of how to use `WYNTemplate`:

```python
# YOUR CODE HERE
```

## Publishing to PyPI

To publish your library to PyPI, follow these steps:

1. **Configure Poetry**: Add your PyPI token to Poetry configuration.

    ```terminal
    poetry config pypi-token.pypi pypi-<TOKEN_HERE>
    ```

2. **Build the Project**: Build your project using Poetry.

    ```terminal
    poetry build
    ```

3. **Publish the Project**: Publish your project to PyPI.

    ```terminal
    poetry publish
    ```

## Contributing

Contributions are welcome! Please feel free to submit a pull request or open an issue if you have any suggestions or improvements.

## License

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

## Contact

For any questions or inquiries, please contact [Yiqiao Yin] at [eagle0504@gmail.com].
