Metadata-Version: 2.4
Name: yfinince
Version: 0.1.0
Summary: A lightweight personal Python utility package for modular experimentation and structured development.
Author: yfinince
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# yfinince

A lightweight personal Python utility package designed to organize modular components for experimentation and structured development.

## Installation

```bash
pip install yfinince
```

## Features

- Clean modular architecture
- Organized file structure
- Lightweight and dependency-free
- Compatible with Python 3.8+

## Publish to PyPI

1. Build artifacts:

```bash
python -m build
```

2. Create `%USERPROFILE%\\.pypirc` (not inside this repo):

```ini
[distutils]
index-servers =
	pypi

[pypi]
repository = https://upload.pypi.org/legacy/
username = __token__
password = ${PYPI_TOKEN}
```

3. Set token in your shell and upload:

```powershell
$env:PYPI_TOKEN = "pypi-<YOUR_NEW_TOKEN>"
python -m twine upload -r pypi dist/*
```

4. Clear the token from the session after upload:

```powershell
Remove-Item Env:PYPI_TOKEN
```

## License

MIT

