Metadata-Version: 2.1
Name: piplink
Version: 1.1.2
Summary: piplink is a Python package for uploading packages to PyPI.
Home-page: https://mrfidal.in/basic-pip-package/piplink
Author: Fidal
Author-email: mrfidal@proton.me
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: requests-toolbelt

# piplink

piplink is a Python package for uploading packages to PyPI.

## Installation

You can install piplink using pip:

```bash
pip install piplink
```

## Usage

After installing piplink, you can use the command line interface `piplink` to upload your Python packages to PyPI.

```bash
piplink
```

### Uploading Packages

Before using `piplink`, make sure you have `setuptools` and `wheel` installed. If not, you can install them using:

```bash
pip install setuptools wheel
```

To upload your package, you can follow these steps:

1. Create distributions using setuptools:

```bash
python setup.py sdist bdist_wheel
```

2. Upload your package using piplink:

```bash
piplink
```

## Requirements

- Python 3.6 and above

## License

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

---

Thank you for using piplink! 🚀
