Metadata-Version: 2.4
Name: hello-NOO
Version: 0.0.2
Summary: A small personal example package
Author-email: NeonOrangeOrange <neonorangeorange@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/NeonOrangeOrange/hello-NOO
Project-URL: Issues, https://github.com/NeonOrangeOrange/hello-NOO/issues
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file


# Hello-NOO

This is an example repository for a python package, for my own reference.




## Development: Things to remember

### Make a source distribution

```text
python -m build --sdist
```

This makes a `*tar.gz` in the `dist/` folder


### Make a wheel

```text
python -m build --wheel
```

This makes a `*.whl` in the `dist/` folder

### Check with twine

```text
twine check dist/*
```

Checks the files in the `dist/` folder


### Upload to PyPi

```text
twine upload --verbose --repository pypi dist/*
```

### Uninstall everyting

```
pip freeze --exlucde hello-NOO | xargs pip uninstall -y
pip uninstall hello-NOO
```

## Resources

[https://pypi.org/classifiers/]()

[https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#classifiers]()


