Metadata-Version: 2.1
Name: example_package_muellerjo
Version: 0.0.2
Summary: A small example package
Project-URL: Homepage, https://github.com/ebsone/dl_PyPI
Project-URL: Issues, https://github.com/ebsone/dl_PyPI/issues
Author-email: Jonas Müller <jo.mueller@sto.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# dl_PyPI

Minimal Example for generating public libraries

# Generating distribution archives

```
py -m pip install --upgrade build
```

```
py -m build
```

# Uploading the distribution archives

```
py -m pip install --upgrade twine
```


```
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
```

You will be prompted for a username and password. For the username, use __token__. For the password, use the token value, including the pypi- prefix.



After the command completes, you should see output similar to this:

```
Uploading distributions to https://test.pypi.org/legacy/
Enter your username: __token__
Uploading example_package_YOUR_USERNAME_HERE-0.0.1-py3-none-any.whl
100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.2/8.2 kB • 00:01 • ?
Uploading example_package_YOUR_USERNAME_HERE-0.0.1.tar.gz
100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.8/6.8 kB • 00:00 • ?
```

Once uploaded, your package should be viewable on TestPyPI; for example:
https://test.pypi.org/project/example_package_YOUR_USERNAME_HERE.