Metadata-Version: 2.1
Name: alphasort
Version: 0.1.3
Summary: Sort lines within regions of a file.
License: LICENSE
Author: Josiah Coad
Author-email: josiah@coad.net
Requires-Python: >=3.13,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: jira (>=3.8.0,<4.0.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Requires-Dist: tomli (>=2.2.1,<3.0.0)
Description-Content-Type: text/markdown

### Setup
#### Pre-setup for pipx, poetry
```
brew install pipx
pipx ensurepath
pipx install poetry
poetry config virtualenvs.in-project true
```

```
poetry install
poetry shell
```

#### to update version
`poetry version patch/minor/major`


#### deploying project
```
poetry config repositories.pypi https://pypi.org
poetry config pypi-token.pypi <token>
poetry build
poetry publish
```

