Metadata-Version: 2.1
Name: ballad
Version: 2.0.0a1
Summary: For when Poetry just doesn't work.
Home-page: https://github.com/BD103/Ballad
Author: BD103
Author-email: dont@stalk.me
License: UNKNOWN
Project-URL: Repository, https://github.com/BD103/Ballad
Project-URL: Bug Tracker, https://github.com/BD103/Ballad/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: tomlkit (<1.0.0,>=0.7.0)
Requires-Dist: click (>=8.0.1)

# [Ballad](https://github.com/BD103/Ballad)

> For when Poetry just doesn't work.

Have you tried setting up [Poetry](https://python-poetry.org/), but something doesn't work? Maybe you're...

- Trying to implement Github Actions but the commands don't register.
- Testing on a computer that doesn't have Poetry installed.
- Just wanting to test out a package without any of these crazy dependency managers.

If so, then you're in the right place!

## Install and Use

First install:

```console
$ pip install ballad
```

Want to install dependencies? Run:

```console
$ python -m ballad install
```

There are various options that you can also run. Check them out!

## Contributing

Get the source code with:

```console
$ git clone https://github.com/BD103/Ballad.git
$ cd Ballad
$ pip install -r requirements.txt
```

Check over your code with the following commands:

```console
$ black .
$ isort .
$ flake8
```

Create a PR, thanks for helping!


