Metadata-Version: 2.4
Name: rabe_demo
Version: 0.1.4
Summary: My first package!
Author-email: Justin Furuness <jfuruness@gmail.com>
Maintainer-email: Justin Furuness <jfuruness@gmail.com>
Project-URL: Homepage, https://github.com/jfuruness/justin_furuness
Project-URL: Documentation, https://github.com/jfuruness/justin_furuness/README.md
Keywords: Furuness
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Operating System :: MacOS :: MacOS X
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENCE.txt
Requires-Dist: colorama~=0.0
Provides-Extra: dev
Requires-Dist: twine; extra == "dev"
Requires-Dist: build; extra == "dev"
Dynamic: license-file

# Don't use this, it's just the walktrough of this great course:

# https://udemy.com/course/python-packaging/learn/lecture/49237879

[![PyPI version](https://badge.fury.io/py/justin_furuness.svg)](https://badge.fury.io/py/justin_furuness)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/justin_furuness)](https://pypi.org/project/justin_furuness/)
![Linux](https://img.shields.io/badge/os-Linux-blue.svg)
![macOS Intel](https://img.shields.io/badge/os-macOS_Intel-lightgrey.svg)
![macOS ARM](https://img.shields.io/badge/os-macOS_ARM-lightgrey.svg)

# justin\_furuness


### If you like the repo, it would be awesome if you could add a star to it! It really helps out the visibility. Also for any questions at all we'd love to hear from you at jfuruness@gmail.com

* [Description](#package-description)
* [Usage](#usage)
* [Installation](#installation)
* [Development/Contributing](#developmentcontributing)
* [License](#license)

## Package Description

Prints my name, and it my first package!

## Usage
* [justin\_furuness](#justin\_furuness)

from a script:

```python
from justin_furuness import Justin

Justin().print_name()
```

From the command line:

```bash
justin_furuness
```

## Installation
* [justin\_furuness](#justin\_furuness)

Install python and pip if you have not already.

Then run:

```bash
pip3 install pip --upgrade
pip3 install wheel
```

For production:

```bash
pip3 install justin_furuness
```

This will install the package and all of it's python dependencies.

If you want to install the project for development:
```bash
git clone https://github.com/jfuruness/justin_furuness.git
cd justin_furuness
pip3 install -e .[dev]
```

To test the development package: [Testing](#testing)


## Development/Contributing
* [justin\_furuness](#justin\_furuness)

1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Test it
5. Commit your changes: `git commit -am 'Add some feature'`
6. Push to the branch: `git push origin my-new-feature`
7. Ensure github actions are passing tests
8. Email me at jfuruness@gmail.com if it's been a while and I haven't seen it

## License
* [justin\_furuness](#justin\_furuness)

BSD License (see license file)
