Metadata-Version: 2.4
Name: ExamplePackage-py
Version: 1.1
Summary: This is where the descrition would go
Author-email: Matthew Carter <mjcarter002@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Orbits-Studio-Programing/ExamplePackage-py
Keywords: keywords1,keywords2,keywords3
Classifier: Programming Language :: Python :: 3.13
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENCE.txt
Dynamic: license-file

# Welcome to ExamplePackage-py
## What is ExamplePackage-py?
ExamplePackage-py was made to help people to make package them selves and to upload them here.\
\
\
\
This is would be where you would put info on the package.\
Or you could put a code example here:

    import examplep as ep

    ep.stuff.adder(12,13)  
  

This code returns 25

## Will this be updated?
Generally packages like this usually don't requre updates (unless because of Readme updates) because the methodology to upload a pypi package stays the same.\
# Where can I find more help?

Full Packaging tutorial - Note: when uses "py" do "python" instead on windows cmd / terminal\
https://packaging.python.org/en/latest/tutorials/packaging-projects/
\
Help Site:\
https://pypi.org/help/
\
Markdown Help / Readme\
https://www.markdownguide.org/getting-started/

---

# How do you use "Twine"?

Twine is a python module that allows you to be able to upload packages to the pypi\
Though it is sometimes considered unsafe\
To use it type in the directory of your built files:

    python -m twine upload dist\*

This will auto upload to the pypi
